├── .DS_Store ├── LICENSE ├── META-INF ├── .DS_Store ├── manifest.mf ├── mozilla.rsa └── mozilla.sf ├── README.md ├── bootstrap.js ├── defaults └── preferences │ └── prefs.js ├── harness-options.json ├── install.rdf ├── locales.json ├── options.xul └── resources └── soundcloud-downloader-technowise ├── data ├── get_sound.js ├── img │ ├── 413536-64.png │ ├── ajax-loader.gif │ ├── dropit.ico │ └── favicon.ico ├── jquery-2.1.4.min.js └── soundclouddownloadertechnowise.user.js └── lib ├── file_manager.js └── main.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/META-INF/.DS_Store -------------------------------------------------------------------------------- /META-INF/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/META-INF/manifest.mf -------------------------------------------------------------------------------- /META-INF/mozilla.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/META-INF/mozilla.rsa -------------------------------------------------------------------------------- /META-INF/mozilla.sf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/META-INF/mozilla.sf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/bootstrap.js -------------------------------------------------------------------------------- /defaults/preferences/prefs.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /harness-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/harness-options.json -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/install.rdf -------------------------------------------------------------------------------- /locales.json: -------------------------------------------------------------------------------- 1 | {"locales": []} 2 | -------------------------------------------------------------------------------- /options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/options.xul -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/get_sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/get_sound.js -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/img/413536-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/img/413536-64.png -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/img/ajax-loader.gif -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/img/dropit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/img/dropit.ico -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/img/favicon.ico -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/data/soundclouddownloadertechnowise.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/data/soundclouddownloadertechnowise.user.js -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/lib/file_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/lib/file_manager.js -------------------------------------------------------------------------------- /resources/soundcloud-downloader-technowise/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Technowise/soundgrab/HEAD/resources/soundcloud-downloader-technowise/lib/main.js --------------------------------------------------------------------------------