Spotify Ad Auto-Muter
Automatically mute audio ads.
什麼是Spotify Ad Auto-Muter?
Spotify Ad Auto-Muter是由Zion Developers開發的Chrome擴展程式,該擴展的主要功能是“Automatically mute audio ads.”。
擴展截圖
下載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/ 擴展基本資訊
| 名稱 | |
| ID | hhlhelmnhcmphakjipgkbcjkfpkdnaag |
| 官方網址 | 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"
]
}
]
} | |