Group Tabs By Domain

New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.

Wat is Group Tabs By Domain?

Group Tabs By Domain is een Chrome-extensie ontwikkeld door grouptabsbydomain, en de belangrijkste functie is "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Group Tabs By Domain

Download Group Tabs By Domain-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Group all the tabs by domain/website url. This will help user to keep tabs organized.

New tabs are automatically moved to the correct group. If no group is available then new group will be created.

It groups all tabs by top level domain. group name will be GOOGLE for both below url(s).
https://google.com
https://docs.google.com                    

Basisinformatie over de Extensie

Naam Group Tabs By Domain Group Tabs By Domain
ID icmbnkmjhdapliaologdghjfpcmcimln
Officiële URL https://chromewebstore.google.com/detail/group-tabs-by-domain/icmbnkmjhdapliaologdghjfpcmcimln
Beschrijving New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.
Bestandsgrootte 63.21 KB
Aantal Installaties 3,084
Huidige Versie 0.0.0.1
Laatst Bijgewerkt 2022-06-08
Publicatiedatum 2022-06-08
Beoordeling 4.52/5 Totaal 31 Beoordelingen
Ontwikkelaar grouptabsbydomain
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Group Tabs By Domain",
    "version": "0.0.0.1",
    "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabGroups",
        "tabs"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "commands": {
        "group-tabs-by-domain": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs."
        }
    }
}