Tab Grouper

Automatically group tabs based on URL matches

Tab Grouper क्या है?

Tab Grouper Mark Harrison द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically group tabs based on URL matches"।

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

screenshot

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

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

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

                        Tab grouper is a chrome extension that allows you to automatically group all
tabs that match a given URL pattern. You create rules for each website saying
which URL pattern to match, the name of the tab group, and optionally a color,
and the extension will add matching websites to the appropriate tab groups as
you browse to them. For example, you could have all jira tickets in a single
group, all amazon pages in another, and all google search results in another.

For more details, see https://github.com/mivok/tabgrouper/blob/master/README.md

***

Questions/Answers:

Q: Why do you need the "Can read your browsing history" (or "tabs") permission?
A: As you browse, the extension reads the addresses of the sites you, matching them against the rules you write, automatically grouping tabs based on those rules. The extension does not store nor transmit your browsing history anywhere.

Q: Why do you need the "View and manage your tab groups" permission?
A: The purpose of this extension is to automatically manage your tab groups for you, and so this permission is needed for the extension to work.                    

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

नाम Tab Grouper Tab Grouper
ID cejjplkmdfnnlmphbhpbnfmkhkknnokg
आधिकारिक URL https://chromewebstore.google.com/detail/tab-grouper/cejjplkmdfnnlmphbhpbnfmkhkknnokg
विवरण Automatically group tabs based on URL matches
फ़ाइल का आकार 19.59 KB
स्थापना संख्या 735
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2021-03-18
प्रकाशन तिथि 2021-03-17
रेटिंग 4.43/5 कुल 7 रेटिंग्स
डेवलपर Mark Harrison
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mivok/tabgrouper
सहायता पृष्ठ URL https://github.com/mivok/tabgrouper/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Grouper",
    "version": "0.0.1",
    "description": "Automatically group tabs based on URL matches",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "tabgroups.js"
    },
    "options_page": "options.html",
    "permissions": [
        "tabGroups",
        "storage",
        "tabs"
    ]
}