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!

Hvad er Recent Tabs?

Recent Tabs er en Chrome-udvidelse udviklet af https://jasonsavard.com, og dens hovedfunktion er "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Recent Tabs-udvidelses-CRX-fil

Download Recent Tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Recent Tabs Recent Tabs
ID ocllfmhjhfmogablefmibmjcodggknml
Officiel URL https://chromewebstore.google.com/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml
Beskrivelse Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!
Filstørrelse 29.33 KB
Antal Installationer 26,175
Nuværende Version 3.4
Senest Opdateret 2023-09-07
Udgivelsesdato 2018-02-21
Bedømmelse 3.50/5 Samlet 331 Bedømmelser
Udvikler https://jasonsavard.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://jasonsavard.com
Hjælpeside-URL https://jasonsavard.com/wiki/Recent_Tabs
URL til Fortrolighedspolitik Side https://jasonsavard.com/wiki/Permissions_and_privacy
Understøttede Sprog 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
}