Spotimute

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

Spotimute क्या है?

Spotimute piedcipher.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension mutes the spotify & gaana audio when ad comes."।

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

screenshot

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

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

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

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