Categorize Tabs
Group Tabs by domain
What is Categorize Tabs?
Categorize Tabs is a Chrome extension developed by yibingshi, and its main feature is "Group Tabs by domain".
Extension Screenshots
Download Categorize Tabs Extension CRX File
Download Categorize Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
An extension to categorize opened tabs by domain name for quick access. Also, you can quickly copy tab link to send to someone, pin/bookmark/close tabs, and move tabs that have same domain name to a new window. Options for access all opened windows, search bar and drag & drop features are coming soon. If you have any suggestions or concerns, feel free to send me an email. * Credit to Kelig Le Luron from the Noun Project & Freepik from Flaticon for the icons
Extension Basic Information
Name | Categorize Tabs |
ID | oefogamggbofaeonfmkigobeflejjgei |
Official URL | https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei |
Description | Group Tabs by domain |
File Size | 110 KB |
Installation Count | 53 |
Current Version | 0.3 |
Last Updated | 2019-01-03 |
Publish Date | 2019-01-03 |
Rating | 4.00/5 Total 2 Ratings |
Developer | yibingshi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/NathanShi/group-tabs |
Help Page URL | https://github.com/NathanShi/group-tabs/pulls |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Categorize Tabs", "version": "0.3", "description": "Group Tabs by domain", "permissions": [ "tabs", "activeTab", "bookmarks", "clipboardWrite" ], "background": { "scripts": [ ".\/scripts\/background.js" ], "persistent": false }, "manifest_version": 2, "browser_action": { "default_popup": ".\/public\/popup.html", "default_icon": { "16": "images\/launch_16.png", "32": "images\/launch_32.png", "48": "images\/launch_48.png", "128": "images\/launch_128.png" }, "persistent": false }, "icons": { "16": "images\/launch_16.png", "32": "images\/launch_32.png", "48": "images\/launch_48.png", "128": "images\/launch_128.png" } } |