Tab Muter

Re-enables the "Mute Tab" feature once found in Chrome itself.

Tab Muterคืออะไร?

Tab Muter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tab.muter.computer และคุณลักษณะหลักของมันคือ "Re-enables the "Mute Tab" feature once found in Chrome itself."

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

screenshot

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

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

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

                        Once upon a time, Chrome had a feature hidden away in chrome://flags to allow users to mute individual tabs by clicking the speaker icon next to the tab's title. This was deemed "not good enough", as the Chrome developers wanted to remove the need for users to manually control tab audio, so it was removed in favour of the "Mute Site" feature.

Chrome can't yet automatically determine which tabs should be playing audio, so I made this extension to let the user make that decision. The button's in a different place due to Chrome API limitations, but apart from that, this extension should work exactly as the old "Mute Tab" feature did.

Having trouble? Email support: [email protected]

This extension is free software; the source code is available at https://github.com/sersorrel/mute-tab.

If you find the extension useful, feel free to leave me a tip: https://ko-fi.com/sersorrel                    

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

ชื่อ Tab Muter Tab Muter
ID bnclejfcblondkjliiblkojdeloomadd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-muter/bnclejfcblondkjliiblkojdeloomadd
คำอธิบาย Re-enables the "Mute Tab" feature once found in Chrome itself.
ขนาดไฟล์ 55.56 KB
จำนวนการติดตั้ง 144,025
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2020-04-27
คะแนน 4.48/5 รวมทั้งหมด 151 คะแนน
ผู้พัฒนา https://tab.muter.computer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://sorrel.sh/projects/tab-muter/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Muter",
    "description": "Re-enables the \"Mute Tab\" feature once found in Chrome itself.",
    "version": "2.1.0",
    "minimum_chrome_version": "122",
    "author": "Ash Holland",
    "action": {
        "default_title": "Mute tab",
        "default_icon": {
            "19": "images\/audible-dark-19.png",
            "38": "images\/audible-dark-38.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "images\/webstore-icon-16.png",
        "48": "images\/webstore-icon-48.png",
        "128": "images\/webstore-icon-128.png"
    }
}