Soundcloud Cleaner
Randomly removes some reposts from the soundcloud feed.
Wat is Soundcloud Cleaner?
Soundcloud Cleaner is een Chrome-extensie ontwikkeld door imagiro, en de belangrijkste functie is "Randomly removes some reposts from the soundcloud feed.".
Extensie Screenshots
Download het CRX-bestand van de extensie Soundcloud Cleaner
Download Soundcloud Cleaner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Soundcloud Cleaner |
ID | jcmnggoigialkomambfiijlafocekbeo |
Officiële URL | https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo |
Beschrijving | Randomly removes some reposts from the soundcloud feed. |
Bestandsgrootte | 38.08 KB |
Aantal Installaties | 110 |
Huidige Versie | 1.21 |
Laatst Bijgewerkt | 2019-05-05 |
Publicatiedatum | 2019-05-05 |
Beoordeling | 4.00/5 Totaal 7 Beoordelingen |
Ontwikkelaar | imagiro |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |