├── .gitignore ├── AirtableKit ├── AirtableKit.scpl ├── createRecord.scpl ├── deleteRecord.scpl ├── docs │ └── index.md ├── firstRun.scpl ├── getApiKey.scpl ├── getBaseId.scpl ├── getBases.scpl ├── getRecord.scpl ├── getSetupState.scpl ├── listRecords.scpl ├── main.scpl ├── normalizeFields.scpl ├── partial_getApiKey.scpl ├── setApiKey.scpl └── updateRecord.scpl ├── Bootstrap.scpl ├── DependencyTree └── docs │ └── img │ └── dt-promo-01.PNG ├── Edit Clipboard.scpl ├── Embed-Springboard ├── img │ ├── step1.png │ ├── step2.png │ ├── step3.png │ ├── step4.png │ └── step5.png └── index.md ├── InstaDownload ├── InstaDownload.scpl └── docs │ └── index.md ├── LICENSE ├── MediaMutt ├── Media Mutt (Beta).scpl ├── Media Mutt (Debug).scpl ├── Media Mutt.scpl ├── Media Mutt.shortcut ├── _Media Mutt.scpl ├── _firstRun.scpl ├── _function_id.scpl ├── _icons_fontawesome.scpl ├── _icons_none.scpl ├── _languages.scpl ├── _main.scpl ├── _meta.scpl ├── _types.scpl ├── _user_opts.scpl ├── addons │ ├── Go Fetch From 9GAG.scpl │ ├── Go Fetch From Dailymotion.scpl │ ├── Go Fetch From FB Post.scpl │ ├── Go Fetch From Instagram Profile.scpl │ ├── Go Fetch From Reddit Comment.scpl │ ├── Go Fetch From Tumblr.scpl │ ├── Go Fetch From Twitter.scpl │ ├── Media Mutt Addon Template.scpl │ └── index.md ├── bin │ └── Media Mutt.shortcut ├── docs │ ├── changelog.md │ ├── comparison.md │ ├── img │ │ ├── mm-promo-1.png │ │ ├── mm-promo-2.png │ │ └── mm-showmessage.png │ ├── index.md │ └── making-mediamutt-addons.md ├── fn-checkForUpdate.scpl ├── fn-fetchFromDirectLink.scpl ├── fn-fetchFromGfycat.scpl ├── fn-fetchFromImgurGifV.scpl ├── fn-fetchFromImgurPost.scpl ├── fn-fetchFromInstagramPost.scpl ├── fn-fetchFromRedditDirectImage.scpl ├── fn-fetchFromRedditHostedVideo.scpl ├── fn-fetchFromRedditLinkedMedia.scpl ├── fn-fetchFromRedditPost.scpl ├── fn-fetchFromStreamable.scpl ├── fn-fetchFromTumblr.scpl ├── fn-fetchFromYoutube.scpl ├── fn-fetchMedia.scpl ├── fn-getKeySafeValue.scpl ├── fn-getUpdates.scpl ├── fn-updateSetting.scpl ├── translations │ ├── Chinese(Traditional).json │ ├── English.json │ ├── German.json │ ├── Portuguese.json │ ├── Russian.json │ ├── Spanish.json │ └── list.json ├── ui-findAddonsRH.scpl ├── ui-getAddonsFile.scpl ├── ui-getAddonsList.scpl ├── ui-getUserOpts.scpl ├── ui-manageAddons.scpl ├── ui-registerAddon.scpl ├── ui-removeAddon.scpl ├── ui-showMessage.scpl └── ui-showSettings.scpl ├── ProfileSwitcher ├── Profile Switcher.scpl └── cfmtest.scpl ├── README.md ├── RMD ├── Reddit Media Downloader.scpl ├── _fallback.scpl ├── _main.scpl ├── docs │ ├── img │ │ └── screenshots.png │ └── index.md ├── fn-checkForUpdates.scpl ├── fn-detectURL.scpl ├── fn-downloadFromDashVideo.scpl ├── fn-downloadFromGfycat.scpl ├── fn-downloadFromImgurGifv.scpl ├── fn-downloadFromImgurLink.scpl ├── fn-downloadFromStreamable.scpl ├── fn-downloadFromYoutube.scpl ├── fn-downloadRedditPost.scpl ├── fn-getRedditDirectImage.scpl ├── fn-getRedditHostedVideo.scpl ├── fn-getRedditLink.scpl ├── fn-getRedditRichVideo.scpl ├── fn-makeKeySafeValue.scpl ├── fn-showMessage.scpl └── fn-xmlToJson.scpl ├── RoutineHub Stats.scpl ├── Show Dictionary Menu.scpl ├── Squareify └── Squareify.scpl ├── Tests └── Check For Update - Test.scpl ├── View Dictionary.scpl ├── View Source.scpl ├── YTIP ├── YouTube iCloud Playlist.scpl └── docs │ └── index.md ├── _config.yml ├── iOS.scpl └── lib ├── bootstrap.scpl ├── checkForUpdate-fn.scpl ├── checkForUpdate-inline.scpl ├── checkForUpdate.scpl ├── fallback.scpl ├── get-dictionary-typename.scpl ├── helpers.scpl └── vcard_menu.scpl /.gitignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | release/ 3 | Thumbs.db 4 | .DS_Store 5 | **/wip -------------------------------------------------------------------------------- /AirtableKit/AirtableKit.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/AirtableKit.scpl -------------------------------------------------------------------------------- /AirtableKit/createRecord.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/createRecord.scpl -------------------------------------------------------------------------------- /AirtableKit/deleteRecord.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/deleteRecord.scpl -------------------------------------------------------------------------------- /AirtableKit/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/docs/index.md -------------------------------------------------------------------------------- /AirtableKit/firstRun.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/firstRun.scpl -------------------------------------------------------------------------------- /AirtableKit/getApiKey.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/getApiKey.scpl -------------------------------------------------------------------------------- /AirtableKit/getBaseId.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/getBaseId.scpl -------------------------------------------------------------------------------- /AirtableKit/getBases.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/getBases.scpl -------------------------------------------------------------------------------- /AirtableKit/getRecord.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/getRecord.scpl -------------------------------------------------------------------------------- /AirtableKit/getSetupState.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/getSetupState.scpl -------------------------------------------------------------------------------- /AirtableKit/listRecords.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/listRecords.scpl -------------------------------------------------------------------------------- /AirtableKit/main.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/main.scpl -------------------------------------------------------------------------------- /AirtableKit/normalizeFields.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/normalizeFields.scpl -------------------------------------------------------------------------------- /AirtableKit/partial_getApiKey.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/partial_getApiKey.scpl -------------------------------------------------------------------------------- /AirtableKit/setApiKey.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/setApiKey.scpl -------------------------------------------------------------------------------- /AirtableKit/updateRecord.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/AirtableKit/updateRecord.scpl -------------------------------------------------------------------------------- /Bootstrap.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Bootstrap.scpl -------------------------------------------------------------------------------- /DependencyTree/docs/img/dt-promo-01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/DependencyTree/docs/img/dt-promo-01.PNG -------------------------------------------------------------------------------- /Edit Clipboard.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Edit Clipboard.scpl -------------------------------------------------------------------------------- /Embed-Springboard/img/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Embed-Springboard/img/step1.png -------------------------------------------------------------------------------- /Embed-Springboard/img/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Embed-Springboard/img/step2.png -------------------------------------------------------------------------------- /Embed-Springboard/img/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Embed-Springboard/img/step3.png -------------------------------------------------------------------------------- /Embed-Springboard/img/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Embed-Springboard/img/step4.png -------------------------------------------------------------------------------- /Embed-Springboard/img/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Embed-Springboard/img/step5.png -------------------------------------------------------------------------------- /Embed-Springboard/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Embed-Springboard/index.md -------------------------------------------------------------------------------- /InstaDownload/InstaDownload.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/InstaDownload/InstaDownload.scpl -------------------------------------------------------------------------------- /InstaDownload/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/InstaDownload/docs/index.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/LICENSE -------------------------------------------------------------------------------- /MediaMutt/Media Mutt (Beta).scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/Media Mutt (Beta).scpl -------------------------------------------------------------------------------- /MediaMutt/Media Mutt (Debug).scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/Media Mutt (Debug).scpl -------------------------------------------------------------------------------- /MediaMutt/Media Mutt.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/Media Mutt.scpl -------------------------------------------------------------------------------- /MediaMutt/Media Mutt.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/Media Mutt.shortcut -------------------------------------------------------------------------------- /MediaMutt/_Media Mutt.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_Media Mutt.scpl -------------------------------------------------------------------------------- /MediaMutt/_firstRun.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_firstRun.scpl -------------------------------------------------------------------------------- /MediaMutt/_function_id.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_function_id.scpl -------------------------------------------------------------------------------- /MediaMutt/_icons_fontawesome.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_icons_fontawesome.scpl -------------------------------------------------------------------------------- /MediaMutt/_icons_none.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_icons_none.scpl -------------------------------------------------------------------------------- /MediaMutt/_languages.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_languages.scpl -------------------------------------------------------------------------------- /MediaMutt/_main.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_main.scpl -------------------------------------------------------------------------------- /MediaMutt/_meta.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_meta.scpl -------------------------------------------------------------------------------- /MediaMutt/_types.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_types.scpl -------------------------------------------------------------------------------- /MediaMutt/_user_opts.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/_user_opts.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From 9GAG.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From 9GAG.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From Dailymotion.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From Dailymotion.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From FB Post.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From FB Post.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From Instagram Profile.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From Instagram Profile.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From Reddit Comment.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From Reddit Comment.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From Tumblr.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From Tumblr.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Go Fetch From Twitter.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Go Fetch From Twitter.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/Media Mutt Addon Template.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/Media Mutt Addon Template.scpl -------------------------------------------------------------------------------- /MediaMutt/addons/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/addons/index.md -------------------------------------------------------------------------------- /MediaMutt/bin/Media Mutt.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/bin/Media Mutt.shortcut -------------------------------------------------------------------------------- /MediaMutt/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/changelog.md -------------------------------------------------------------------------------- /MediaMutt/docs/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/comparison.md -------------------------------------------------------------------------------- /MediaMutt/docs/img/mm-promo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/img/mm-promo-1.png -------------------------------------------------------------------------------- /MediaMutt/docs/img/mm-promo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/img/mm-promo-2.png -------------------------------------------------------------------------------- /MediaMutt/docs/img/mm-showmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/img/mm-showmessage.png -------------------------------------------------------------------------------- /MediaMutt/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/index.md -------------------------------------------------------------------------------- /MediaMutt/docs/making-mediamutt-addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/docs/making-mediamutt-addons.md -------------------------------------------------------------------------------- /MediaMutt/fn-checkForUpdate.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-checkForUpdate.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromDirectLink.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromDirectLink.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromGfycat.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromGfycat.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromImgurGifV.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromImgurGifV.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromImgurPost.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromImgurPost.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromInstagramPost.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromInstagramPost.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromRedditDirectImage.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromRedditDirectImage.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromRedditHostedVideo.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromRedditHostedVideo.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromRedditLinkedMedia.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromRedditLinkedMedia.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromRedditPost.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromRedditPost.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromStreamable.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromStreamable.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromTumblr.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromTumblr.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchFromYoutube.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchFromYoutube.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-fetchMedia.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-fetchMedia.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-getKeySafeValue.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-getKeySafeValue.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-getUpdates.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-getUpdates.scpl -------------------------------------------------------------------------------- /MediaMutt/fn-updateSetting.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/fn-updateSetting.scpl -------------------------------------------------------------------------------- /MediaMutt/translations/Chinese(Traditional).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/Chinese(Traditional).json -------------------------------------------------------------------------------- /MediaMutt/translations/English.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/English.json -------------------------------------------------------------------------------- /MediaMutt/translations/German.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/German.json -------------------------------------------------------------------------------- /MediaMutt/translations/Portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/Portuguese.json -------------------------------------------------------------------------------- /MediaMutt/translations/Russian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/Russian.json -------------------------------------------------------------------------------- /MediaMutt/translations/Spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/Spanish.json -------------------------------------------------------------------------------- /MediaMutt/translations/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/translations/list.json -------------------------------------------------------------------------------- /MediaMutt/ui-findAddonsRH.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-findAddonsRH.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-getAddonsFile.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-getAddonsFile.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-getAddonsList.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-getAddonsList.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-getUserOpts.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-getUserOpts.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-manageAddons.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-manageAddons.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-registerAddon.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-registerAddon.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-removeAddon.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-removeAddon.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-showMessage.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-showMessage.scpl -------------------------------------------------------------------------------- /MediaMutt/ui-showSettings.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/MediaMutt/ui-showSettings.scpl -------------------------------------------------------------------------------- /ProfileSwitcher/Profile Switcher.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/ProfileSwitcher/Profile Switcher.scpl -------------------------------------------------------------------------------- /ProfileSwitcher/cfmtest.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/ProfileSwitcher/cfmtest.scpl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/README.md -------------------------------------------------------------------------------- /RMD/Reddit Media Downloader.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/Reddit Media Downloader.scpl -------------------------------------------------------------------------------- /RMD/_fallback.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/_fallback.scpl -------------------------------------------------------------------------------- /RMD/_main.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/_main.scpl -------------------------------------------------------------------------------- /RMD/docs/img/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/docs/img/screenshots.png -------------------------------------------------------------------------------- /RMD/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/docs/index.md -------------------------------------------------------------------------------- /RMD/fn-checkForUpdates.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-checkForUpdates.scpl -------------------------------------------------------------------------------- /RMD/fn-detectURL.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-detectURL.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadFromDashVideo.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadFromDashVideo.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadFromGfycat.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadFromGfycat.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadFromImgurGifv.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadFromImgurGifv.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadFromImgurLink.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadFromImgurLink.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadFromStreamable.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadFromStreamable.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadFromYoutube.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadFromYoutube.scpl -------------------------------------------------------------------------------- /RMD/fn-downloadRedditPost.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-downloadRedditPost.scpl -------------------------------------------------------------------------------- /RMD/fn-getRedditDirectImage.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-getRedditDirectImage.scpl -------------------------------------------------------------------------------- /RMD/fn-getRedditHostedVideo.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-getRedditHostedVideo.scpl -------------------------------------------------------------------------------- /RMD/fn-getRedditLink.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-getRedditLink.scpl -------------------------------------------------------------------------------- /RMD/fn-getRedditRichVideo.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-getRedditRichVideo.scpl -------------------------------------------------------------------------------- /RMD/fn-makeKeySafeValue.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-makeKeySafeValue.scpl -------------------------------------------------------------------------------- /RMD/fn-showMessage.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-showMessage.scpl -------------------------------------------------------------------------------- /RMD/fn-xmlToJson.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RMD/fn-xmlToJson.scpl -------------------------------------------------------------------------------- /RoutineHub Stats.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/RoutineHub Stats.scpl -------------------------------------------------------------------------------- /Show Dictionary Menu.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Show Dictionary Menu.scpl -------------------------------------------------------------------------------- /Squareify/Squareify.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Squareify/Squareify.scpl -------------------------------------------------------------------------------- /Tests/Check For Update - Test.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/Tests/Check For Update - Test.scpl -------------------------------------------------------------------------------- /View Dictionary.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/View Dictionary.scpl -------------------------------------------------------------------------------- /View Source.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/View Source.scpl -------------------------------------------------------------------------------- /YTIP/YouTube iCloud Playlist.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/YTIP/YouTube iCloud Playlist.scpl -------------------------------------------------------------------------------- /YTIP/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/YTIP/docs/index.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/_config.yml -------------------------------------------------------------------------------- /iOS.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/iOS.scpl -------------------------------------------------------------------------------- /lib/bootstrap.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/bootstrap.scpl -------------------------------------------------------------------------------- /lib/checkForUpdate-fn.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/checkForUpdate-fn.scpl -------------------------------------------------------------------------------- /lib/checkForUpdate-inline.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/checkForUpdate-inline.scpl -------------------------------------------------------------------------------- /lib/checkForUpdate.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/checkForUpdate.scpl -------------------------------------------------------------------------------- /lib/fallback.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/fallback.scpl -------------------------------------------------------------------------------- /lib/get-dictionary-typename.scpl: -------------------------------------------------------------------------------- 1 | Dictionary items={"key":"val"} 2 | GetType 3 | -------------------------------------------------------------------------------- /lib/helpers.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/helpers.scpl -------------------------------------------------------------------------------- /lib/vcard_menu.scpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermamon/shortcuts/HEAD/lib/vcard_menu.scpl --------------------------------------------------------------------------------