Go to tab making sound keyboard shortcut

Adds a keyboard shortcut (ctrl+shift+1) to go to the tab making sound.

Go to tab making sound keyboard shortcut란 무엇입니까?

Go to tab making sound keyboard shortcut은(는) imjasonh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a keyboard shortcut (ctrl+shift+1) to go to the tab making sound."입니다.

확장 프로그램 스크린샷

screenshot

Go to tab making sound keyboard shortcut 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension registers a keyboard shortcut (ctrl+shift+1), that, when pressed, focuses the tab currently making sound. This could be useful if you're in a meeting or watching a YouTube video, and want to quickly switch back to it from another tab.

If you have multiple Chrome profiles active at the time, it'll only take you to the tab making sound in the current profile you're looking at, so you'll have to install this on all Chrome profiles that you expect to use it on, and have to switch to the correct profile (ctrl-`) for it to work in that case. This is a limitation of the Chrome extension APIs, sorry :(                    

확장 프로그램 기본 정보

이름 Go to tab making sound keyboard shortcut Go to tab making sound keyboard shortcut
ID khjmagmbbhdkmaicdhfehehdncmagbig
공식 URL https://chromewebstore.google.com/detail/go-to-tab-making-sound-ke/khjmagmbbhdkmaicdhfehehdncmagbig
설명 Adds a keyboard shortcut (ctrl+shift+1) to go to the tab making sound.
파일 크기 11.46 KB
설치 횟수 32
현재 버전 0.0.1
최근 업데이트 2021-08-07
출시 날짜 2021-08-06
개발자 imjasonh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/imjasonh/chrome-sound
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.1",
    "name": "Go to tab making sound keyboard shortcut",
    "description": "Adds a keyboard shortcut (ctrl+shift+1) to go to the tab making sound.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "cycle-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Cycle back through sound tabs."
        }
    }
}