Spotify adblocker
Listen to your favorite music without any ads with spotify adblocker
Spotify adblocker क्या है?
Spotify adblocker Prime Extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Listen to your favorite music without any ads with spotify adblocker"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Spotify adblocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Enhance your Spotify experience with Spotify AdBlocker ! This Chrome extension effortlessly blocks annoying audio, as well as pesky pop-ups, ensuring uninterrupted music streaming. No more interruptions—just pure, ad-free music bliss. Upgrade your Spotify journey today
एक्सटेंशन की मूल जानकारी
नाम | Spotify adblocker |
ID | jjkmjkmaaaplnncabkhoeonloebnmjgd |
आधिकारिक URL | https://chrome.google.com/webstore/detail/spotify-adblocker/jjkmjkmaaaplnncabkhoeonloebnmjgd |
विवरण | Listen to your favorite music without any ads with spotify adblocker |
फ़ाइल का आकार | 123 KB |
स्थापना संख्या | 31 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2023-09-28 |
प्रकाशन तिथि | 2023-09-28 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Prime Extensions |
ईमेल | [email protected] |
एक्सटेंशन वेबसाइट | https://www.spotifyadblocker.co/ |
सहायता पृष्ठ URL | https://www.spotifyadblocker.co/support |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify adblocker", "description": "Listen to your favorite music without any ads with spotify adblocker", "version": "1.0.0", "manifest_version": 3, "icons": { "16": "spotify16x16.png", "48": "spotify48x48.png", "128": "spotify128x128.png" }, "action": { "default_popup": "popup.html", "default_title": "spotify adblocker", "default_icon": "spotify16x16.png" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "permissions": [ "declarativeNetRequest" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "contentScriptSpotify.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "contentScriptSpotify.js", "adsSweetalertSpotify.js", "adsAdsRemoveSpotify.js", "adswsHooksSpotify.js" ], "matches": [ "https:\/\/open.spotify.com\/*" ] } ] } |