SpotiAds
Removes audio ads on Spotify™ Web Player
SpotiAdsとは何ですか?
SpotiAdsはTomerによって開発されたChromeの拡張機能で、その主な機能は「Removes audio ads on Spotify™ Web Player」です。
拡張機能のスクリーンショット
SpotiAds拡張機能のCRXファイルをダウンロード
SpotiAds拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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\/*" ] } |