Spotify Ad Auto-Muter

Automatically mute audio ads.

什么是Spotify Ad Auto-Muter?

Spotify Ad Auto-Muter是由Zion Developers开发的Chrome扩展程序,该扩展的主要功能是“Automatically mute audio ads.”。

扩展截图

screenshot

下载Spotify Ad Auto-Muter扩展crx文件

下载Spotify Ad Auto-Muter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
            ]
        }
    ]
}