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 |
Eメール | [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 } |