This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Email Input Overlay | |
| // @namespace http://tampermonkey.net/ | |
| // @description Press Ctrl+Shift+L to show/hide email input overlay | |
| // @version 1.0 | |
| // @author Albatrosicks | |
| // @include * | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Mail.ru Cloud Zip Downloader | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Copy download link of the entire folder as a ZIP archive to clipboard. By Ctrl+Shift+S | |
| // @updateURL https://gist.github.com/Albatrosicks/532d31558c7d6f628a7c30cd9d0aaa6e/raw/MailruCloudZipDownloader-user.js | |
| // @match https://cloud.mail.ru/public/* | |
| // @grant GM_xmlhttpRequest | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults write com.apple.LaunchServices/com.apple.launchservices.secure \ | |
| LSHandlers -array-add \ | |
| '{LSHandlerContentType=public.plain-text;LSHandlerRoleAll=com.sublimetext.3;}' |