Soundcloud Cleaner

Randomly removes some reposts from the soundcloud feed.

Co to jest Soundcloud Cleaner?

Soundcloud Cleaner to rozszerzenie Chrome opracowane przez imagiro, a jego główną funkcją jest „Randomly removes some reposts from the soundcloud feed.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Soundcloud Cleaner

Pobierz pliki rozszerzeń Soundcloud Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Soundcloud Cleaner Soundcloud Cleaner
ID jcmnggoigialkomambfiijlafocekbeo
Oficjalny URL https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo
Opis Randomly removes some reposts from the soundcloud feed.
Rozmiar pliku 38.08 KB
Liczba instalacji 110
Aktualna Wersja 1.21
Ostatnia Aktualizacja 2019-05-05
Data Publikacji 2019-05-05
Ocena 4.00/5 Łącznie 7 Oceny
Deweloper imagiro
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}