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