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!

Cos'è Recent Tabs?

Recent Tabs è un'estensione di Chrome sviluppata da https://jasonsavard.com, e la sua funzione principale è "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Recent Tabs

Scarica i file di estensione Recent Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Recent Tabs Recent Tabs
ID ocllfmhjhfmogablefmibmjcodggknml
URL Ufficiale https://chromewebstore.google.com/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml
Descrizione Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!
Dimensione del File 29.33 KB
Conteggio Installazioni 26,175
Versione Corrente 3.4
Ultimo Aggiornamento 2023-09-07
Data di Pubblicazione 2018-02-21
Valutazione 3.50/5 Totale 331 Valutazioni
Sviluppatore https://jasonsavard.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://jasonsavard.com
URL della Pagina di Aiuto https://jasonsavard.com/wiki/Recent_Tabs
URL della Pagina della Politica sulla Privacy https://jasonsavard.com/wiki/Permissions_and_privacy
Lingue Supportate 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
}