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