Open Last Tab

Cycle through last used Chrome tabs using keyboard shortcut (Alt+Q).

Qu'est-ce que Open Last Tab ?

Open Last Tab est une extension Chrome développée par https://mydiv.org, et sa fonction principale est "Cycle through last used Chrome tabs using keyboard shortcut (Alt+Q).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open Last Tab

Téléchargez les fichiers d'extension Open Last Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Helps jump between last used tabs by keyboard shortcut in Chrome, 
Yandex Browser and other Chromium-based browsers.

Default shortcut: Alt + Q

Based on clut-chrome-extension 
(https://github.com/harshayburadkar/clut-chrome-extension / MIT License),
but without any analitycs and third-party code. Just core functionality. 
Open source and needs only "tabs" permissions.

This extension tries to allow you switch between open tabs in a Most Recently Used fashion. 
It remembers the order in which you switched tabs (made a tab active) and it updates 
its records so that you can switch to the recently used ones quickly.   

Note: Sometimes after updating the extension the keyboard shortcut settings get reset. 
Hence you might want to set the desired key board shortcuts again in the keyboard shortcut 
settings in the Chrome Extensions page.

The project is made open source in GitHub: 
https://github.com/xordiv/open-last-tab-chrome

[Default Keys:]
*ALT + Q*: Quick switch
*ALT + S*: Normal switch
*ALT + Shift + S*: Normal switch (in opposite direction)
*Keys can be changed in keyboard shortcut settings on the Chrome extensions page.                    

Informations de Base sur l'Extension

Nom Open Last Tab Open Last Tab
ID naolnccddjabbhmjogiejjgocjnglmge
URL Officiel https://chromewebstore.google.com/detail/open-last-tab/naolnccddjabbhmjogiejjgocjnglmge
Description Cycle through last used Chrome tabs using keyboard shortcut (Alt+Q).
Taille du Fichier 26.35 KB
Nombre d'Installations 2,454
Version Actuelle 1.0
Dernière Mise à Jour 2019-02-26
Date de Publication 2019-02-25
Évaluation 4.95/5 Total 20 Évaluations
Développeur https://mydiv.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/xordiv/open-last-tab-chrome
Langues Prises en Charge en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Open Last Tab",
    "short_name": "OLT",
    "description": "__MSG_description__",
    "version": "1.0",
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "alt_switch_fast": {
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Alt+Q"
            },
            "description": "__MSG_alt_switch_fast_description__"
        },
        "alt_switch_slow_backward": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "__MSG_alt_switch_slow_backward_description__"
        },
        "alt_switch_slow_forward": {
            "suggested_key": {
                "default": "Alt+Shift+S",
                "mac": "Alt+Shift+S"
            },
            "description": "__MSG_alt_switch_slow_forward_description__"
        }
    },
    "browser_action": {
        "default_title": "__MSG_title__",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    }
}