Spotimute

This extension mutes the spotify & gaana audio when ad comes.

什么是Spotimute?

Spotimute是由piedcipher.dev开发的Chrome扩展程序,该扩展的主要功能是“This extension mutes the spotify & gaana audio when ad comes.”。

扩展截图

screenshot

下载Spotimute扩展crx文件

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

扩展使用说明

                        This extension auto-mutes the Spotify and Gaana audio when an advertisement comes. Also, it auto-unmutes the audio when the ad is finished.                    

扩展基本信息

名称 Spotimute Spotimute
ID mlkdhplkfffpgfkioemkjagaccinclgc
官方URL https://chromewebstore.google.com/detail/spotimute/mlkdhplkfffpgfkioemkjagaccinclgc
简介 This extension mutes the spotify & gaana audio when ad comes.
文件大小 19.98 KB
安装次数 91
当前版本 0.0.2
更新时间 2022-07-27
上架时间 2022-07-21
评分 5.00/5 共3次评分
开发者 piedcipher.dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://twitter.com/piedcipher
帮助页面URL https://github.com/piedcipher/spotimute/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotimute",
    "version": "0.0.2",
    "description": "This extension mutes the spotify & gaana audio when ad comes.",
    "manifest_version": 3,
    "author": "Tirth Patel",
    "action": {
        "default_popup": "index.html",
        "default_title": "Spotimute"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "spotify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/gaana.com\/*"
            ],
            "js": [
                "gaana.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/assets\/_16.png",
        "48": ".\/assets\/_48.png",
        "128": ".\/assets\/_128.png"
    }
}