SpotiAds

Removes audio ads on Spotify™ Web Player

什么是SpotiAds?

SpotiAds是由Tomer开发的Chrome扩展程序,该扩展的主要功能是“Removes audio ads on Spotify™ Web Player”。

扩展截图

screenshot

下载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 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\/*"
    ]
}