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…

Hvad er Last Tab?

Last Tab er en Chrome-udvidelse udviklet af SnowDonut, og dens hovedfunktion er "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…".

Download Last Tab-udvidelses-CRX-fil

Download Last Tab-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Last Tab Last Tab
ID ahjejhiehlhdhcgpifiappdhdjhbhcpf
Officiel URL https://chromewebstore.google.com/detail/last-tab/ahjejhiehlhdhcgpifiappdhdjhbhcpf
Beskrivelse 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…
Filstørrelse 81.62 KB
Antal Installationer 79
Nuværende Version 0.1
Senest Opdateret 2016-10-26
Udgivelsesdato 2016-10-26
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler SnowDonut
Betalingsmetode free
Understøttede Sprog 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"
    ]
}