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.”。
扩展截图
下载Go to tab making sound keyboard shortcut扩展crx文件
下载Go to tab making sound keyboard shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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." } } } |