Spotify Ad Auto-Muter

Automatically mute audio ads.

Spotify Ad Auto-Muterคืออะไร?

Spotify Ad Auto-Muter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zion Developers และคุณลักษณะหลักของมันคือ "Automatically mute audio ads."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spotify Ad Auto-Muter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}