Soundcloud Cleaner

Randomly removes some reposts from the soundcloud feed.

Что такое Soundcloud Cleaner?

Soundcloud Cleaner - это расширение Chrome, разработанное imagiro, и его основная функция - "Randomly removes some reposts from the soundcloud feed.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Soundcloud Cleaner

Скачайте файлы расширений Soundcloud Cleaner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Soundcloud Cleaner Soundcloud Cleaner
ID jcmnggoigialkomambfiijlafocekbeo
Официальный URL https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo
Описание Randomly removes some reposts from the soundcloud feed.
Размер файла 38.08 KB
Количество установок 110
Текущая Версия 1.21
Последнее Обновление 2019-05-05
Дата публикации 2019-05-05
Рейтинг 4.00/5 Всего 7 оценок
Разработчик imagiro
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
        }
    ]
}