SoundFilter

Remove reposts from soundcloud feed.

SoundFilter क्या है?

SoundFilter import antigrvty द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove reposts from soundcloud feed."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SoundFilter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम SoundFilter SoundFilter
ID opmifoiilcpcapcklajjdkobiilloknp
आधिकारिक URL https://chromewebstore.google.com/detail/soundfilter/opmifoiilcpcapcklajjdkobiilloknp
विवरण Remove reposts from soundcloud feed.
फ़ाइल का आकार 1.39 MB
स्थापना संख्या 226
वर्तमान संस्करण 1.5
अंतिम अपडेट 2020-01-04
प्रकाशन तिथि 2020-01-04
रेटिंग 3.60/5 कुल 5 रेटिंग्स
डेवलपर import antigrvty
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}