Tab grouper

A tab grouping extension by Explosion-Scratch. This extension is open source here:…

Tab grouper क्या है?

Tab grouper Explosion-Scratch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tab grouping extension by Explosion-Scratch. This extension is open source here:…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab grouper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A tab grouping extension by Explosion-Scratch. This extension is open source here: https://github.com/Explosion-Scratch/tab_grouping

This extension allows automatically grouping tabs, manually grouping tabs, ungrouping them, naming the groups automatically and so much more!                    

एक्सटेंशन की मूल जानकारी

नाम Tab grouper Tab grouper
ID ebaakekgcpaojdlfcfmlaelgaacmdeje
आधिकारिक URL https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje
विवरण A tab grouping extension by Explosion-Scratch. This extension is open source here:…
फ़ाइल का आकार 31.63 KB
स्थापना संख्या 93
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-12-05
प्रकाशन तिथि 2021-12-03
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Explosion-Scratch
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab grouper",
    "version": "1.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "permissions": [
        "tabs",
        "tabGroups",
        "storage"
    ],
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "settings.html",
        "open_in_tab": true
    },
    "commands": {
        "group": {
            "suggested_key": {
                "default": "Ctrl+G"
            },
            "description": "Group tabs in the current window by domain"
        },
        "collapse": {
            "suggested_key": {
                "default": "Ctrl+Shift+G"
            },
            "description": "Collapse non focused tab groups in the current window"
        },
        "ungroup": {
            "description": "Ungroup all tabs in the current window"
        }
    }
}