Spotify Ad Auto-Muter
Automatically mute audio ads.
Spotify Ad Auto-Muter क्या है?
Spotify Ad Auto-Muter Zion Developers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically mute audio ads."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spotify Ad Auto-Muter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is NOT an Ad Blocker, It mute ads. Support Spotify by disabling AdBlock / uBlock on open.spotify.com and use this extension to automatically mute audio ads. Feature: Automatically mute audio ads (Changeable on Options). Feature: Disable / Enable the extension by pressing F2 (Changeable on Options). More features to be developed soon. This is not a Spotify official extension. Open Source: https://github.com/ziondevelopers/spotify-ad-auto-muter License: https://creativecommons.org/licenses/by-nc-sa/4.0/
एक्सटेंशन की मूल जानकारी
नाम | Spotify Ad Auto-Muter |
ID | hhlhelmnhcmphakjipgkbcjkfpkdnaag |
आधिकारिक URL | https://chromewebstore.google.com/detail/spotify-ad-auto-muter/hhlhelmnhcmphakjipgkbcjkfpkdnaag |
विवरण | Automatically mute audio ads. |
फ़ाइल का आकार | 100 KB |
स्थापना संख्या | 579 |
वर्तमान संस्करण | 0.1.10 |
अंतिम अपडेट | 2024-01-07 |
प्रकाशन तिथि | 2022-10-25 |
रेटिंग | 3.67/5 कुल 6 रेटिंग्स |
डेवलपर | Zion Developers |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ziondevelopers/spotify-ad-auto-muter |
सहायता पृष्ठ URL | https://github.com/ZionDevelopers/spotify-ad-auto-muter/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "exclude_globs": [], "include_globs": [ "*open.spotify.com*" ], "css": [], "js": [ "includes\/jquery-3.7.1.min.js", "includes\/spotify.js", "includes\/jquery.hotkeys.js" ], "matches": [ "*:\/\/open.spotify.com\/*" ], "run_at": "document_start" } ], "description": "Automatically mute audio ads.", "icons": { "128": "icons\/icon.png" }, "manifest_version": 3, "name": "Spotify Ad Auto-Muter", "short_name": "Spotify Ad Auto-Muter", "options_page": "options.html", "permissions": [ "storage" ], "version": "0.1.10", "web_accessible_resources": [ { "matches": [ "*:\/\/open.spotify.com\/*" ], "resources": [ "icons\/icon.png", "includes\/jquery-3.7.1.min.js", "includes\/spotify.js", "includes\/jquery-3.7.1.min.map", "includes\/jquery.hotkeys.js" ] } ] } |