Recent Tabs

Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!

Qu'est-ce que Recent Tabs ?

Recent Tabs est une extension Chrome développée par https://jasonsavard.com, et sa fonction principale est "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Recent Tabs

Téléchargez les fichiers d'extension Recent Tabs 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

                        Just like using Alt+Tab for Windows except now for your browser tabs. Use Ctrl+Tab or Ctrl+Q or Ctrl+`(~) or assign your own shortcut key for swapping back and forth between your last viewed tabs.                    

Informations de Base sur l'Extension

Nom Recent Tabs Recent Tabs
ID ocllfmhjhfmogablefmibmjcodggknml
URL Officiel https://chromewebstore.google.com/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml
Description Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!
Taille du Fichier 29.33 KB
Nombre d'Installations 26,175
Version Actuelle 3.4
Dernière Mise à Jour 2023-09-07
Date de Publication 2018-02-21
Évaluation 3.50/5 Total 331 Évaluations
Développeur https://jasonsavard.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://jasonsavard.com
URL de la Page d'Aide https://jasonsavard.com/wiki/Recent_Tabs
URL de la Page de Politique de Confidentialité https://jasonsavard.com/wiki/Permissions_and_privacy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recent Tabs",
    "version": "3.4",
    "description": "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "alarms"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "toggleTabs": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Tab"
            },
            "description": "Toggle between the last 2 recent tabs"
        }
    },
    "manifest_version": 3
}