Manage My Tabs - Tab Manager

Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.

Manage My Tabs - Tab Manager क्या है?

Manage My Tabs - Tab Manager aadair द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs."।

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

screenshot
screenshot
screenshot

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

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

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

                        Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs. Tabs are grouped by website name and are shown in one convenient tab that the user may search and customize. From the manager tab, the user can navigate to any tab, close tabs individually or by groups and view tabs from other windows.

Features:
- Groups tabs by website hostname
- Lists tab groups and tabs alphabetically or numerically
- Search for tab or tab group
- Close tabs individually or by group
- Navigate to tabs
- Auto updates when tabs are opened or closed
- Undo button to reopen the last tab that was closed (Ctrl + Z)
  Settings:
	- Change number of columns
	- Restore default settings button
	- Display number of tabs per group
	- Get tabs from all windows
	- Select which window to get tabs from
	- Sort options
	- Search by tabs or website name                    

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

नाम Manage My Tabs - Tab Manager Manage My Tabs - Tab Manager
ID jbhejjmjopbmikcoffcckcnbaiohgbge
आधिकारिक URL https://chromewebstore.google.com/detail/manage-my-tabs-tab-manage/jbhejjmjopbmikcoffcckcnbaiohgbge
विवरण Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.
फ़ाइल का आकार 1.17 MB
स्थापना संख्या 3,815
वर्तमान संस्करण 0.4.0
अंतिम अपडेट 2019-03-05
प्रकाशन तिथि 2019-03-05
रेटिंग 4.38/5 कुल 13 रेटिंग्स
डेवलपर aadair
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://adamjamesadair.github.io/manage-my-tabs/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Manage My Tabs - Tab Manager",
    "description": "Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.",
    "version": "0.4.0",
    "browser_action": {
        "default_icon": "images\/icons\/icon128.png"
    },
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "scripts\/src\/bg.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+M",
                "mac": "Alt+M"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/lib\/jquery\/jquery-3.3.1.min.js",
                "scripts\/lib\/jquery\/jquery-ui.js"
            ]
        }
    ]
}