Soundcloud Cleaner

Randomly removes some reposts from the soundcloud feed.

Soundcloud Cleaner là gì?

Soundcloud Cleaner là một tiện ích mở rộng Chrome được phát triển bởi imagiro, và tính năng chính của nó là "Randomly removes some reposts from the soundcloud feed.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Soundcloud Cleaner

Tải xuống các tệp mở rộng Soundcloud Cleaner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Soundcloud Cleaner Soundcloud Cleaner
ID jcmnggoigialkomambfiijlafocekbeo
URL Chính Thức https://chromewebstore.google.com/detail/soundcloud-cleaner/jcmnggoigialkomambfiijlafocekbeo
Mô tả Randomly removes some reposts from the soundcloud feed.
Kích Thước Tệp 38.08 KB
Số Lần Cài Đặt 110
Phiên Bản Hiện Tại 1.21
Cập Nhật Lần Cuối 2019-05-05
Ngày Phát Hành 2019-05-05
Đánh Giá 4.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển imagiro
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}