Spotimute

This extension mutes the spotify & gaana audio when ad comes.

Τι είναι το Spotimute;

Το Spotimute είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον piedcipher.dev, και η κύρια λειτουργία του είναι "This extension mutes the spotify & gaana audio when ad comes.".

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

screenshot

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

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

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

                        This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Spotimute Spotimute
ID mlkdhplkfffpgfkioemkjagaccinclgc
Επίσημο URL https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc
Περιγραφή This extension mutes the spotify & gaana audio when ad comes.
Μέγεθος Αρχείου 19.98 KB
Αριθμός Εγκαταστάσεων 91
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2022-07-27
Ημερομηνία Δημοσίευσης 2022-07-21
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής piedcipher.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://twitter.com/piedcipher
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/piedcipher/spotimute/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotimute",
    "version": "0.0.2",
    "description": "This extension mutes the spotify & gaana audio when ad comes.",
    "manifest_version": 3,
    "author": "Tirth Patel",
    "action": {
        "default_popup": "index.html",
        "default_title": "Spotimute"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "spotify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gaana.com\/*"
            ],
            "js": [
                "gaana.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/assets\/_16.png",
        "48": ".\/assets\/_48.png",
        "128": ".\/assets\/_128.png"
    }
}