Chrome tab explorer

Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.

Chrome tab explorer क्या है?

Chrome tab explorer https://sites.google.com/site/fujundu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count."।

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

screenshot
screenshot

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

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

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

                        Having too many tabs and windows opened in your Chrome browser and having a hard time to keep track of which is which?

This extension lets you search through the tabs using keywords in the title and url of the page.  It also shows tab count.

"Bookmark all" will bookmark all tabs in a directory under "Other Bookmarks" of your bookmark folder.

It can be called out by "Alt + T".                    

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

नाम Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
आधिकारिक URL https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
विवरण Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
फ़ाइल का आकार 10.11 KB
स्थापना संख्या 190
वर्तमान संस्करण 0.4
अंतिम अपडेट 2017-12-22
प्रकाशन तिथि 2017-12-22
डेवलपर https://sites.google.com/site/fujundu
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/fjdu/tabExplorer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tab explorer",
    "short_name": "Tab explorer",
    "description": "Navigate through the tabs by searching keywords in the page title or url.  Also shows the tab count.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find tabs by searching keywords in the title or url.  Shortcut: Alt+T."
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    }
}