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!

Co to jest Recent Tabs?

Recent Tabs to rozszerzenie Chrome opracowane przez https://jasonsavard.com, a jego główną funkcją jest „Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Recent Tabs

Pobierz pliki rozszerzeń Recent Tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Recent Tabs Recent Tabs
ID ocllfmhjhfmogablefmibmjcodggknml
Oficjalny URL https://chromewebstore.google.com/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml
Opis Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!
Rozmiar pliku 29.33 KB
Liczba instalacji 26,175
Aktualna Wersja 3.4
Ostatnia Aktualizacja 2023-09-07
Data Publikacji 2018-02-21
Ocena 3.50/5 Łącznie 331 Oceny
Deweloper https://jasonsavard.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://jasonsavard.com
Adres URL Strony Pomocy https://jasonsavard.com/wiki/Recent_Tabs
Adres URL Strony Polityki Prywatności https://jasonsavard.com/wiki/Permissions_and_privacy
Obsługiwane Języki 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
}