Manage Tabs by Domain

Close and gather same-domain tabs.

Qu'est-ce que Manage Tabs by Domain ?

Manage Tabs by Domain est une extension Chrome développée par Nicole White, et sa fonction principale est "Close and gather same-domain tabs.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Manage Tabs by Domain

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

                        Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All.

You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/                    

Informations de Base sur l'Extension

Nom Manage Tabs by Domain Manage Tabs by Domain
ID jgjhgpeaejjahlbcgijdibooomicdcfi
URL Officiel https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi
Description Close and gather same-domain tabs.
Taille du Fichier 1.08 MB
Nombre d'Installations 362
Version Actuelle 0.0.2
Dernière Mise à Jour 2017-06-19
Date de Publication 2017-06-18
Évaluation 4.11/5 Total 9 Évaluations
Développeur Nicole White
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/nicolewhite/same-domain-tabs/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Manage Tabs by Domain",
    "short_name": "Manage Tabs",
    "description": "Close and gather same-domain tabs.",
    "version": "0.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "commands"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "gather-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Gather same-domain tabs around active tab."
        },
        "close-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Close same-domain tabs as active tab."
        },
        "gather-tabs-all": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Gather all same-domain tabs."
        }
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}