Switch to Audible Tab

Focus on tab that is currently making sound

Switch to Audible Tab란 무엇입니까?

Switch to Audible Tab은(는) klntsky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Focus on tab that is currently making sound"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Switch to Audible Tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This free and open source extension allows the user to switch to a tab that is making sound by clicking on the extension icon.

If there are multiple audible tabs, the extension will cycle through them and then return to the initial tab.

If there are no audible tabs, the extension will do nothing. Tabs that are muted by the user are also considered audible (this can be changed at the settings page).

If there are audible tabs belonging to other windows, these windows will be brought in focus too.

It is also possible to control the order in which the tabs will be visited: available options are 'left-to-right' and 'right-to-left'.                    

확장 프로그램 기본 정보

이름 Switch to Audible Tab Switch to Audible Tab
ID obhmhiijebijngjodncffkecfiolonom
공식 URL https://chromewebstore.google.com/detail/switch-to-audible-tab/obhmhiijebijngjodncffkecfiolonom
설명 Focus on tab that is currently making sound
파일 크기 217 KB
설치 횟수 111
현재 버전 0.0.9
최근 업데이트 2021-12-13
출시 날짜 2021-12-09
개발자 klntsky
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/klntsky/switch-to-audible-tab/
도움말 페이지 URL https://github.com/klntsky/switch-to-audible-tab/issues/new
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch to Audible Tab",
    "version": "0.0.9",
    "description": "Focus on tab that is currently making sound",
    "icons": {
        "128": "img\/128.png"
    },
    "background": {
        "scripts": [
            "dist\/browser-polyfill.js",
            "src\/background.js"
        ]
    },
    "options_ui": {
        "page": "static\/settings.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": {
            "128": "img\/128.png"
        },
        "default_title": "Switch to audible tab (Alt+Shift+A)"
    },
    "commands": {
        "_execute_browser_action": {
            "description": "Switch to audible tab",
            "suggested_key": {
                "default": "Alt+Shift+A"
            }
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "applications": {
        "gecko": {
            "id": "{0cd726db-f954-44f2-bf4f-7ed0de734de2}",
            "strict_min_version": "57.0"
        }
    }
}