Tab Organizer

Organizes and Rearranges tabs by URL.

Cos'è Tab Organizer?

Tab Organizer è un'estensione di Chrome sviluppata da Devin Soni, e la sua funzione principale è "Organizes and Rearranges tabs by URL.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tab Organizer

Scarica i file di estensione Tab Organizer 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

                        *** 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.                    

Informazioni di Base sull'Estensione

Nome Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
URL Ufficiale https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
Descrizione Organizes and Rearranges tabs by URL.
Dimensione del File 8.1 KB
Conteggio Installazioni 6,272
Versione Corrente 1.0
Ultimo Aggiornamento 2016-05-12
Data di Pubblicazione 2016-05-11
Valutazione 4.43/5 Totale 37 Valutazioni
Sviluppatore Devin Soni
Tipo di Pagamento free
Lingue Supportate 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"
}