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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}