SpotiAds
Removes audio ads on Spotify™ Web Player
SpotiAds क्या है?
SpotiAds Tomer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes audio ads on Spotify™ Web Player"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SpotiAds एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will block annoying audio ads from playing on Spotify™. Using it, ads will not play on Spotify™ online web player, and instead the next song will play. Note that this will not affect your smartphone, etc. Sources are available here: https://github.com/tomer8007/spotify-web-ads-remover ———————————————————— LEGAL ———————————————————— This extension is against Spotify's Terms of Service. Spotify is a trademark of Spotify Technology S.A., registered in the U.S. and other countries. This extension is an independent project developed by Tomer H. and has no relationship to Spotify or Spotify Technology S.A.
एक्सटेंशन की मूल जानकारी
नाम | SpotiAds |
ID | mghhlojofjipigjobacbjdngmjafdeim |
आधिकारिक URL | https://chromewebstore.google.com/detail/spotiads/mghhlojofjipigjobacbjdngmjafdeim |
विवरण | Removes audio ads on Spotify™ Web Player |
फ़ाइल का आकार | 112 KB |
स्थापना संख्या | 175,753 |
वर्तमान संस्करण | 1.1.4 |
अंतिम अपडेट | 2024-03-01 |
प्रकाशन तिथि | 2020-11-15 |
रेटिंग | 4.21/5 कुल 467 रेटिंग्स |
डेवलपर | Tomer |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://github.com/tomer8007/whatsapp-web-incognito/wiki/Chrome-Extension-Privacy-Policy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SpotiAds", "short_name": "SpotiAdBlocker", "description": "Removes audio ads on Spotify\u2122 Web Player", "version": "1.1.4", "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/open.spotify.com\/*" ], "icons": { "128": "images\/icon_2_128.png" }, "browser_action": { "default_icon": "images\/icon_2_128.png", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/open.spotify.com\/*" ], "js": [ "lib\/sweetalert.min.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ "injected\/*", "lib\/*" ] } |