Last Tab

Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you…

Co to jest Last Tab?

Last Tab to rozszerzenie Chrome opracowane przez SnowDonut, a jego główną funkcją jest „Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you…”.

Pobierz plik CRX rozszerzenia Last Tab

Pobierz pliki rozszerzeń Last Tab 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

                        Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you were just working on. Can assign a shortcut to it to make it easily accessible.                    

Podstawowe informacje o rozszerzeniu

Nazwa Last Tab Last Tab
ID ahjejhiehlhdhcgpifiappdhdjhbhcpf
Oficjalny URL https://chromewebstore.google.com/detail/last-tab/ahjejhiehlhdhcgpifiappdhdjhbhcpf
Opis Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you…
Rozmiar pliku 81.62 KB
Liczba instalacji 79
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-10-26
Data Publikacji 2016-10-26
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper SnowDonut
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Last Tab",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}