Soundcloud Cleaner
Randomly removes some reposts from the soundcloud feed.
What is Soundcloud Cleaner?
Soundcloud Cleaner is a Chrome extension developed by imagiro, and its main feature is "Randomly removes some reposts from the soundcloud feed.".
Extension Screenshots
Download Soundcloud Cleaner Extension CRX File
Download Soundcloud Cleaner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Make your soundcloud feed usable again with this free extension. Choose the amount of reposts to remove from the feed - on each refresh the addon will remove a certain number of reposts based on your preference.
Extension Basic Information
Name | Soundcloud Cleaner |
ID | jcmnggoigialkomambfiijlafocekbeo |
Official URL | https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo |
Description | Randomly removes some reposts from the soundcloud feed. |
File Size | 38.08 KB |
Installation Count | 110 |
Current Version | 1.21 |
Last Updated | 2019-05-05 |
Publish Date | 2019-05-05 |
Rating | 4.00/5 Total 7 Ratings |
Developer | imagiro |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Soundcloud Cleaner", "version": "1.21", "description": "Randomly removes some reposts from the soundcloud feed.", "icons": { "48": "iconOn.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/soundcloud.com\/*" ], "js": [ "jquery.js", "script.js" ], "run_at": "document_start" } ] } |