Tab Muter

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

Tab Muter란 무엇입니까?

Tab Muter은(는) https://tab.muter.computer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Re-enables the "Mute Tab" feature once found in Chrome itself."입니다.

확장 프로그램 스크린샷

screenshot

Tab Muter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}