Soundcloud Cleaner

Randomly removes some reposts from the soundcloud feed.

Cos'è Soundcloud Cleaner?

Soundcloud Cleaner è un'estensione di Chrome sviluppata da imagiro, e la sua funzione principale è "Randomly removes some reposts from the soundcloud feed.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Soundcloud Cleaner

Scarica i file di estensione Soundcloud Cleaner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Soundcloud Cleaner Soundcloud Cleaner
ID jcmnggoigialkomambfiijlafocekbeo
URL Ufficiale https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo
Descrizione Randomly removes some reposts from the soundcloud feed.
Dimensione del File 38.08 KB
Conteggio Installazioni 110
Versione Corrente 1.21
Ultimo Aggiornamento 2019-05-05
Data di Pubblicazione 2019-05-05
Valutazione 4.00/5 Totale 7 Valutazioni
Sviluppatore imagiro
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}