Tab Organizer
Organizes and Rearranges tabs by URL.
Was ist Tab Organizer?
Tab Organizer ist eine Chrome-Erweiterung, die von Devin Soni entwickelt wurde, und ihr Hauptmerkmal ist "Organizes and Rearranges tabs by URL.".
Erweiterungsscreenshots
Tab Organizer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Organizer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
*** 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.
Grundlegende Informationen zur Erweiterung
Name | Tab Organizer |
ID | kkcbifggchajpkagcpagenpfghbplghc |
Offizielle URL | https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc |
Beschreibung | Organizes and Rearranges tabs by URL. |
Dateigröße | 8.1 KB |
Installationsanzahl | 6,272 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-05-12 |
Veröffentlichungsdatum | 2016-05-11 |
Bewertung | 4.43/5 Insgesamt 37 Bewertungen |
Entwickler | Devin Soni |
Zahlungsart | free |
Unterstützte Sprachen | 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" } |