Categorize Tabs
Group Tabs by domain
Cos'è Categorize Tabs?
Categorize Tabs è un'estensione di Chrome sviluppata da yibingshi, e la sua funzione principale è "Group Tabs by domain".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Categorize Tabs
Scarica i file di estensione Categorize Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Categorize Tabs |
ID | oefogamggbofaeonfmkigobeflejjgei |
URL Ufficiale | https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei |
Descrizione | Group Tabs by domain |
Dimensione del File | 110 KB |
Conteggio Installazioni | 53 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2019-01-03 |
Data di Pubblicazione | 2019-01-03 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | yibingshi |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/NathanShi/group-tabs |
URL della Pagina di Aiuto | https://github.com/NathanShi/group-tabs/pulls |
Lingue Supportate | 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" } } |