Tab Organizer
Organizes and Rearranges tabs by URL.
Tab Organizerとは何ですか?
Tab OrganizerはDevin Soniによって開発されたChromeの拡張機能で、その主な機能は「Organizes and Rearranges tabs by URL.」です。
拡張機能のスクリーンショット
Tab Organizer拡張機能のCRXファイルをダウンロード
Tab Organizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
*** FEATURED ON PRODUCT HUNT AND LIFEHACKER *** Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order. Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs. * * * NEW IN VERSION 1.0: * * * * Options page to manage settings * Automatically sort tabs every 5, 30, or 60 minutes. * Keyboard shortcut "Ctrl + Shift + A" to sort on command.
拡張機能の基本情報
名前 | Tab Organizer |
ID | kkcbifggchajpkagcpagenpfghbplghc |
公式URL | https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc |
説明 | Organizes and Rearranges tabs by URL. |
ファイルサイズ | 8.1 KB |
インストール数 | 6,272 |
現在のバージョン | 1.0 |
最終更新日 | 2016-05-12 |
公開日 | 2016-05-11 |
評価 | 4.43/5 合計 37 レビュー |
開発者 | Devin Soni |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Organizer", "version": "1.0", "manifest_version": 2, "description": "Organizes and Rearranges tabs by URL.", "background": { "persistent": true, "scripts": [ "bg.js", "options.js" ] }, "permissions": [ "tabs", "storage" ], "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png" }, "commands": { "activate": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Activate sorting" } }, "options_page": "options.html" } |