Tab Organizer

Organizes and Rearranges tabs by URL.

Tab Organizer क्या है?

Tab Organizer Devin Soni द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Organizes and Rearranges tabs by URL."।

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

screenshot

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

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

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

                        *** FEATURED ON PRODUCT HUNT AND LIFEHACKER ***

Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order.

Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs.

* * * NEW IN VERSION 1.0: * * *
* Options page to manage settings
* Automatically sort tabs every 5, 30, or 60 minutes.
* Keyboard shortcut "Ctrl + Shift + A" to sort on command.                    

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

नाम Tab Organizer Tab Organizer
ID kkcbifggchajpkagcpagenpfghbplghc
आधिकारिक URL https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc
विवरण Organizes and Rearranges tabs by URL.
फ़ाइल का आकार 8.1 KB
स्थापना संख्या 6,272
वर्तमान संस्करण 1.0
अंतिम अपडेट 2016-05-12
प्रकाशन तिथि 2016-05-11
रेटिंग 4.43/5 कुल 37 रेटिंग्स
डेवलपर Devin Soni
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Organizer",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Organizes and Rearranges tabs by URL.",
    "background": {
        "persistent": true,
        "scripts": [
            "bg.js",
            "options.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "commands": {
        "activate": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Activate sorting"
        }
    },
    "options_page": "options.html"
}