Manage My Tabs - Tab Manager
Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.
Manage My Tabs - Tab Managerとは何ですか?
Manage My Tabs - Tab Managerはaadairによって開発されたChromeの拡張機能で、その主な機能は「Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.」です。
拡張機能のスクリーンショット
Manage My Tabs - Tab Manager拡張機能のCRXファイルをダウンロード
Manage My Tabs - Tab Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs. Tabs are grouped by website name and are shown in one convenient tab that the user may search and customize. From the manager tab, the user can navigate to any tab, close tabs individually or by groups and view tabs from other windows. Features: - Groups tabs by website hostname - Lists tab groups and tabs alphabetically or numerically - Search for tab or tab group - Close tabs individually or by group - Navigate to tabs - Auto updates when tabs are opened or closed - Undo button to reopen the last tab that was closed (Ctrl + Z) Settings: - Change number of columns - Restore default settings button - Display number of tabs per group - Get tabs from all windows - Select which window to get tabs from - Sort options - Search by tabs or website name
拡張機能の基本情報
名前 | Manage My Tabs - Tab Manager |
ID | jbhejjmjopbmikcoffcckcnbaiohgbge |
公式URL | https://chromewebstore.google.com/detail/manage-my-tabs-tab-manage/jbhejjmjopbmikcoffcckcnbaiohgbge |
説明 | Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs. |
ファイルサイズ | 1.17 MB |
インストール数 | 3,815 |
現在のバージョン | 0.4.0 |
最終更新日 | 2019-03-05 |
公開日 | 2019-03-05 |
評価 | 4.38/5 合計 13 レビュー |
開発者 | aadair |
支払い方法 | free |
拡張機能のウェブサイト | https://adamjamesadair.github.io/manage-my-tabs/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Manage My Tabs - Tab Manager", "description": "Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.", "version": "0.4.0", "browser_action": { "default_icon": "images\/icons\/icon128.png" }, "icons": { "16": "images\/icons\/icon16.png", "48": "images\/icons\/icon48.png", "128": "images\/icons\/icon128.png" }, "permissions": [ "tabs", "activeTab", "storage", "clipboardWrite" ], "background": { "scripts": [ "scripts\/src\/bg.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+M", "mac": "Alt+M" } } }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "scripts\/lib\/jquery\/jquery-3.3.1.min.js", "scripts\/lib\/jquery\/jquery-ui.js" ] } ] } |