Manage Tabs by Domain
Close and gather same-domain tabs.
什么是Manage Tabs by Domain?
Manage Tabs by Domain是由Nicole White开发的Chrome扩展程序,该扩展的主要功能是“Close and gather same-domain tabs.”。
扩展截图
下载Manage Tabs by Domain扩展crx文件
下载Manage Tabs by Domain扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All. You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/
扩展基本信息
名称 | Manage Tabs by Domain |
ID | jgjhgpeaejjahlbcgijdibooomicdcfi |
官方URL | https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi |
简介 | Close and gather same-domain tabs. |
文件大小 | 1.08 MB |
安装次数 | 362 |
当前版本 | 0.0.2 |
更新时间 | 2017-06-19 |
上架时间 | 2017-06-18 |
评分 | 4.11/5 共9次评分 |
开发者 | Nicole White |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/nicolewhite/same-domain-tabs/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manage Tabs by Domain", "short_name": "Manage Tabs", "description": "Close and gather same-domain tabs.", "version": "0.0.2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "commands" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "gather-tabs": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Gather same-domain tabs around active tab." }, "close-tabs": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Close same-domain tabs as active tab." }, "gather-tabs-all": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Gather all same-domain tabs." } }, "browser_action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "manifest_version": 2 } |