Categorize Tabs

Group Tabs by domain

Wat is Categorize Tabs?

Categorize Tabs is een Chrome-extensie ontwikkeld door yibingshi, en de belangrijkste functie is "Group Tabs by domain".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Categorize Tabs

Download Categorize Tabs-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

                        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                    

Basisinformatie over de Extensie

Naam Categorize Tabs Categorize Tabs
ID oefogamggbofaeonfmkigobeflejjgei
Officiële URL https://chromewebstore.google.com/detail/categorize-tabs/oefogamggbofaeonfmkigobeflejjgei
Beschrijving Group Tabs by domain
Bestandsgrootte 110 KB
Aantal Installaties 53
Huidige Versie 0.3
Laatst Bijgewerkt 2019-01-03
Publicatiedatum 2019-01-03
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar yibingshi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/NathanShi/group-tabs
Help Pagina-URL https://github.com/NathanShi/group-tabs/pulls
Ondersteunde Talen 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"
    }
}