Tab Organizer

Organizes and Rearranges tabs by URL.

Qu'est-ce que Tab Organizer ?

Tab Organizer est une extension Chrome développée par Devin Soni, et sa fonction principale est "Organizes and Rearranges tabs by URL.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tab Organizer

Téléchargez les fichiers d'extension Tab Organizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
URL Officiel https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
Description Organizes and Rearranges tabs by URL.
Taille du Fichier 8.1 KB
Nombre d'Installations 6,272
Version Actuelle 1.0
Dernière Mise à Jour 2016-05-12
Date de Publication 2016-05-11
Évaluation 4.43/5 Total 37 Évaluations
Développeur Devin Soni
Type de Paiement free
Langues Prises en Charge 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"
}