SoundFilter

Remove reposts from soundcloud feed.

SoundFilter là gì?

SoundFilter là một tiện ích mở rộng Chrome được phát triển bởi import antigrvty, và tính năng chính của nó là "Remove reposts from soundcloud feed.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng SoundFilter 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

                        Sometimes there are just too many damn reposts and you don't want to see them.  Just turn on soundfilter and they'll be removed for you.  Click the icon up in the top right of the browser to toggle soundfilter on and off.  That's pretty much it.


Future Enhancements

- Find a way to actually alter requests so that reposts are never requested in the first place... As it stands, the extension is just removing reposts as they come in, so they are still being downloaded - which makes it much slower than it could be but I'm just not sure how to filter out reposts from the beginning.

-Skip reposts in autoplay.  Soundcloud makes your autoplay playlist behind the scenes, so even though they are being deleted from the page, they will still be played in autoplay.                    

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

Tên SoundFilter SoundFilter
ID opmifoiilcpcapcklajjdkobiilloknp
URL Chính Thức https://chromewebstore.google.com/detail/soundfilter/opmifoiilcpcapcklajjdkobiilloknp
Mô tả Remove reposts from soundcloud feed.
Kích Thước Tệp 1.39 MB
Số Lần Cài Đặt 226
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2020-01-04
Ngày Phát Hành 2020-01-04
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển import antigrvty
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SoundFilter",
    "description": "Remove reposts from soundcloud feed.",
    "version": "1.5",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/*.soundcloud.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "SoundFilter",
        "default_icon": "icon_16.png"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "removeReposts.js"
            ]
        }
    ]
}