Categorize Tabs

Group Tabs by domain

Qu'est-ce que Categorize Tabs ?

Categorize Tabs est une extension Chrome développée par yibingshi, et sa fonction principale est "Group Tabs by domain".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Categorize Tabs

Téléchargez les fichiers d'extension Categorize Tabs 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

                        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                    

Informations de Base sur l'Extension

Nom Categorize Tabs Categorize Tabs
ID oefogamggbofaeonfmkigobeflejjgei
URL Officiel https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei
Description Group Tabs by domain
Taille du Fichier 110 KB
Nombre d'Installations 53
Version Actuelle 0.3
Dernière Mise à Jour 2019-01-03
Date de Publication 2019-01-03
Évaluation 4.00/5 Total 2 Évaluations
Développeur yibingshi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/NathanShi/group-tabs
URL de la Page d'Aide https://github.com/NathanShi/group-tabs/pulls
Langues Prises en Charge 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"
    }
}