Tab Group Helper

Allow quick grouping of tabs by their attributes like title or URL

Tab Group Helper क्या है?

Tab Group Helper Mike DiDomizio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow quick grouping of tabs by their attributes like title or URL"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        The main audience being those that have a lot of browser tabs open like office workers or software developers, where tabs managing tabs might become unorganized.

You could group tabs by social media, work, JIRA, Git, etc.  However you like!

Other features
============
- Use regular expressions to be more creative/advanced with your grouping rules
- Automatically group tabs on creation and/or on when tabs change web page
- Import/export your settings to share with co-workers or friends
- Sort your groups with a click of a button
- Keyboard shortcuts to run without opening the extension

Note: Although upon install the extension will say that it is asking for browser history, it is part of the tabs permission as you can read here => https://www.quora.com/Why-do-so-many-Chrome-extensions-ask-for-access-to-my-browsing-history .  This extension does not read your browser history.                    

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

नाम Tab Group Helper Tab Group Helper
ID llhkcebnebfiaamifhbpehjompplpnae
आधिकारिक URL https://chromewebstore.google.com/detail/tab-group-helper/llhkcebnebfiaamifhbpehjompplpnae
विवरण Allow quick grouping of tabs by their attributes like title or URL
फ़ाइल का आकार 125 KB
स्थापना संख्या 102
वर्तमान संस्करण 1.9.1
अंतिम अपडेट 2022-04-08
प्रकाशन तिथि 2021-04-13
डेवलपर Mike DiDomizio
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mikedidomizio/tab-group-helper
सहायता पृष्ठ URL https://github.com/mikedidomizio/tab-group-helper
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Allow quick grouping of tabs by their attributes like title or URL",
    "version": "1.9.1",
    "manifest_version": 3,
    "name": "Tab Group Helper",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "tabGroups"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png"
            ],
            "matches": []
        }
    ],
    "minimum_chrome_version": "89",
    "offline_enabled": true,
    "commands": {
        "run_grouping": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "Command+Shift+G"
            },
            "description": "Groups tabs by rules"
        }
    }
}