Tab Organizer

Organizes and Rearranges tabs by URL.

O que é Tab Organizer?

Tab Organizer é uma extensão do Chrome desenvolvida por Devin Soni, e sua principal característica é "Organizes and Rearranges tabs by URL.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Organizer

Baixe arquivos de extensão Tab Organizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
URL Oficial https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
Descrição Organizes and Rearranges tabs by URL.
Tamanho do Arquivo 8.1 KB
Contagem de Instalações 6,272
Versão Atual 1.0
Última Atualização 2016-05-12
Data de Publicação 2016-05-11
Classificação 4.43/5 Total de 37 Avaliações
Desenvolvedor Devin Soni
Tipo de Pagamento free
Idiomas Suportados 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"
}