Switch between recent tabs (MRU tabs switch)

Use a keyboard shortcut to switch between two most recent tabs.

Switch between recent tabs (MRU tabs switch) क्या है?

Switch between recent tabs (MRU tabs switch) ilyachase द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use a keyboard shortcut to switch between two most recent tabs."।

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

screenshot

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

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

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

                        By default, the hotkey is Alt+Q (⌥Q on Mac) but can be configured by accessing the following URL: chrome://extensions/shortcuts
Please, take note that it's not possible to use existing Chrome hotkeys on this page.

If you still want to set e.g. Ctrl+Tab as a hotkey, you have to change the Chrome settings file.
On Windows: Press Win+R and execute "notepad %LOCALAPPDATA%\Google\Chrome\User Data\Default\Preferences".
On Ubuntu: gedit ~/.config/google-chrome/Default/Preferences 
Then change all occurrences of Alt+Q to Ctrl+Tab
Important: if you're using Google account sync, disable settings synchronization. Otherwise, Chrome will be overriding the changed hotkey on each restart.

If the above way doesn't work for you, follow the instructions on this Gist: https://gist.github.com/ilyachase/49c7a6d1aa543d16568520560cfaf226                    

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

नाम Switch between recent tabs (MRU tabs switch) Switch between recent tabs (MRU tabs switch)
ID jceaicinopjaoknlhdfdjileacogogep
आधिकारिक URL https://chromewebstore.google.com/detail/switch-between-recent-tab/jceaicinopjaoknlhdfdjileacogogep
विवरण Use a keyboard shortcut to switch between two most recent tabs.
फ़ाइल का आकार 76.57 KB
स्थापना संख्या 694
वर्तमान संस्करण 1.3
अंतिम अपडेट 2024-03-02
प्रकाशन तिथि 2021-11-14
रेटिंग 4.64/5 कुल 14 रेटिंग्स
डेवलपर ilyachase
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "commands": {
        "inject-script": {
            "suggested_key": "Alt+Q",
            "description": "Switch to the previous tab"
        }
    }
}