Tab Grouper
Consolidate your tabs into a list.
Tab Grouperとは何ですか?
Tab GrouperはLeslie Heinzenによって開発されたChromeの拡張機能で、その主な機能は「Consolidate your tabs into a list.」です。
拡張機能のスクリーンショット
Tab Grouper拡張機能のCRXファイルをダウンロード
Tab Grouper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Tab Grouper will gobble up and close all of your open tabs, and spit them out into a list on a single, new, fresh tab. 拡張機能の基本情報
| 名前 | |
| ID | mbgligdomdgbbenibfnlociabpmidilp |
| 公式URL | https://chrome.google.com/webstore/detail/tab-grouper/mbgligdomdgbbenibfnlociabpmidilp |
| 説明 | Consolidate your tabs into a list. |
| ファイルサイズ | 11.99 KB |
| インストール数 | 18 |
| 現在のバージョン | 0.3.0 |
| 最終更新日 | 2018-05-10 |
| 公開日 | 2018-05-10 |
| 開発者 | Leslie Heinzen |
| 支払い方法 | free |
| ヘルプページのURL | https://github.com/Zero-man/tab-grouper-chrome/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Grouper",
"version": "0.3.0",
"description": "Consolidate your tabs into a list.",
"homepage_url": "https:\/\/github.com\/Zero-man\/tab-grouper-chrome",
"icons": {
"32": "icons\/fish-64.png",
"48": "icons\/fish-64.png",
"64": "icons\/fish-64.png"
},
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"group-tabs": {
"suggested_key": {
"default": "Alt+Shift+G"
},
"description": "Close all tabs."
}
},
"permissions": [
"tabs"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"32": "icons\/fish-64.png"
},
"default_title": "TabGrouper",
"default_popup": "popup\/popup.html"
}
} | |