MRU Tab Toggle

Makes switching tabs manageable even when many are open!

MRU Tab Toggle क्या है?

MRU Tab Toggle ben.borchard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes switching tabs manageable even when many are open!"।

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

screenshot
screenshot

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

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

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

                        This is a fairly simple extension that allows you to navigate through your tabs in the same way you navigate through your windows when you use the Alt-Tab functionality.

The shortcuts need to be set using the keyboard shortcuts link on the chrome extension dashboard and can be changed depending on your preference.

This is helpful if you would like to have many tabs open but be able to switch between only a couple that you happen to be using quickly and easily.                    

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

नाम MRU Tab Toggle MRU Tab Toggle
ID ffnhjdgocgbpgnhkeamobligjppaacho
आधिकारिक URL https://chromewebstore.google.com/detail/mru-tab-toggle/ffnhjdgocgbpgnhkeamobligjppaacho
विवरण Makes switching tabs manageable even when many are open!
फ़ाइल का आकार 103 KB
स्थापना संख्या 10
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-05-28
प्रकाशन तिथि 2015-05-28
रेटिंग 1.67/5 कुल 3 रेटिंग्स
डेवलपर ben.borchard
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ben-borchard/ChromeExtensions/tree/master/MostRecentlyUsedTabs/src
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MRU Tab Toggle",
    "description": "Makes switching tabs manageable even when many are open!",
    "version": "1.0",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/jquery-1.10.2.js",
                "js\/content.js"
            ]
        }
    ],
    "commands": {
        "Toggle-Tab-Forward": {
            "suggested_key": {
                "default": "Ctrl+A",
                "mac": "MacCtrl+Q"
            },
            "description": "Toggle Tab Forward"
        },
        "Toggle-Tab-Backward": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "MacCtrl+Shift+Q"
            },
            "description": "Toggle Tab Backward"
        }
    },
    "icons": {
        "48": "images\/icon48.jpg",
        "128": "images\/icon128.jpg"
    },
    "web_accessible_resources": [
        "images\/chrome.png",
        "images\/newTab.PNG",
        "images\/defaultIcon.png"
    ],
    "permissions": [
        "tabs"
    ]
}