SoundFilter

Remove reposts from soundcloud feed.

Τι είναι το SoundFilter;

Το SoundFilter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον import antigrvty, και η κύρια λειτουργία του είναι "Remove reposts from soundcloud feed.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SoundFilter

Λήψη αρχείων επέκτασης SoundFilter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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