AutoMute

Automatically mutes each new tab the instant it is opened.

AutoMuteคืออะไร?

AutoMute เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danbhentschel และคุณลักษณะหลักของมันคือ "Automatically mutes each new tab the instant it is opened."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AutoMute

ดาวน์โหลดไฟล์ส่วนขยาย AutoMute ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you getting tired of obnoxious ads blaring sound while you're browsing? AutoMute automatically mutes every tab opened in your browser, effectively allowing you to opt-in to hear audio in a web page, instead of forcing you to opt-out.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AutoMute AutoMute
ID kjcdcbhfpjkcjinohfaaihpcmpnpmpie
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie
คำอธิบาย Automatically mutes each new tab the instant it is opened.
ขนาดไฟล์ 72.51 KB
จำนวนการติดตั้ง 11,057
เวอร์ชันปัจจุบัน 2.1.1
อัปเดตครั้งล่าสุด 2017-04-10
วันที่เผยแพร่ 2017-04-10
คะแนน 4.30/5 รวมทั้งหมด 92 คะแนน
ผู้พัฒนา danbhentschel
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoMute",
    "description": "Automatically mutes each new tab the instant it is opened.",
    "version": "2.1.1",
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "Speaker_19.png",
            "38": "Speaker_38.png"
        },
        "default_title": "AutoMute",
        "default_popup": "browserAction.html"
    },
    "commands": {
        "mute-all": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Mute all tabs"
        },
        "mute-tab": {
            "suggested_key": {
                "default": "Alt+Shift+M"
            },
            "description": "Mute current tab"
        },
        "mute-other": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Mute other tabs"
        }
    },
    "icons": {
        "16": "Speaker_16.png",
        "48": "Speaker_48.png",
        "128": "Speaker_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}