Soundcloud Cleaner
Randomly removes some reposts from the soundcloud feed.
Vad är Soundcloud Cleaner?
Soundcloud Cleaner är en Chrome-tillägg utvecklad av imagiro, och dess huvudfunktion är "Randomly removes some reposts from the soundcloud feed.".
Tilläggsskärmbilder
Ladda ner Soundcloud Cleaner-förlängningens CRX-fil
Ladda ner Soundcloud Cleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Soundcloud Cleaner |
ID | jcmnggoigialkomambfiijlafocekbeo |
Officiell webbadress | https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo |
Beskrivning | Randomly removes some reposts from the soundcloud feed. |
Filstorlek | 38.08 KB |
Antal Installationer | 110 |
Aktuell Version | 1.21 |
Senast Uppdaterad | 2019-05-05 |
Publiceringsdatum | 2019-05-05 |
Betyg | 4.00/5 Totalt 7 Betyg |
Utvecklare | imagiro |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |