Ctrl+Tab MRU

Switch between tabs in the most recently used order, can be configured to use Ctrl+Tab as a shortcut

Ctrl+Tab MRU क्या है?

Ctrl+Tab MRU Daniel Calliess द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch between tabs in the most recently used order, can be configured to use Ctrl+Tab as a shortcut"।

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

screenshot
screenshot

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

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

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

                        'Ctrl+Tab MRU' allows switching through tabs in the order they were visited before. By default this happens by pressing Ctrl+Y for going back in time and Ctrl+Shift+Y for the other way round. 

*** IMPORTANT TO KNOW ***
Unfortunately Chrome doesn't drectly allow users to set Ctr+Tab as shortcut keys. So I suggest using the following trick to circumvent this: https://superuser.com/a/1326712.
*** *** ***

Tab switching also works on special pages (like chrome://), Chrome Web Store URLs, PDFs, XMLs or when the address bar is focused. In this case a temporary tab is opened to show the menu.
To directly jump to a tab listed on the switcher menu, click on its title or icon.

Drawbacks:
- At the moment I don't have an idea how to avoid the temporary tab. It's required because I otherwise could not detect the release of the ctrl key (=end of the switching action) on special pages.
- If you release the ctrl key too fast while the temporary tab is loaded I am unable to detect the key-up event, therefore the menu gets stuck. Please hit the ctrl key again to finish switching.
- Recent tab order is not preserved when closing and restoring a window.

Permissions:
- 'Access your data on all websites': required to draw the tab list on top of the websites' content and to detect PDFs and XMLs.
- 'Access your tabs and browsing activity': required to record tab order, open the temporary tab and to switch to the selected tab.

Updates:
- 0.9
-- switch to Manifest V3 to be future proof
- 0.6
-- tab titles on the switcher popup are now clickable to directly jump to a tab
-- no more need to reload the tabs after initial install
-- added xml viewer support (menu is shown on temporary tab)

- 0.5
-- added frameset support (menu is shown on temporary tab)

- 0.4.2
-- added support for ftp and file:// pages
-- added incognito support

- 0.3.1
-- corrected tab order for tabs opened in the background
-- refined stylesheet                    

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

नाम Ctrl+Tab MRU Ctrl+Tab MRU
ID ialfjajikhdldpgcfglgndennidgkhik
आधिकारिक URL https://chromewebstore.google.com/detail/ctrl+tab-mru/ialfjajikhdldpgcfglgndennidgkhik
विवरण Switch between tabs in the most recently used order, can be configured to use Ctrl+Tab as a shortcut
फ़ाइल का आकार 15.2 KB
स्थापना संख्या 2,325
वर्तमान संस्करण 0.9
अंतिम अपडेट 2023-10-12
प्रकाशन तिथि 2016-03-22
रेटिंग 3.49/5 कुल 113 रेटिंग्स
डेवलपर Daniel Calliess
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "0.9",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "ctrltabmru16.png",
        "48": "ctrltabmru48.png",
        "128": "ctrltabmru128.png"
    },
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Ctrl+Y"
            },
            "description": "__MSG_shortcutNextDesc__"
        },
        "previous": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "__MSG_shortcutPrevDesc__"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "content.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "incognito": "split"
}