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…

Vad är Last Tab?

Last Tab är en Chrome-tillägg utvecklad av SnowDonut, och dess huvudfunktion är "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…".

Ladda ner Last Tab-förlängningens CRX-fil

Ladda ner Last Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Last Tab Last Tab
ID ahjejhiehlhdhcgpifiappdhdjhbhcpf
Officiell webbadress https://chromewebstore.google.com/detail/last-tab/ahjejhiehlhdhcgpifiappdhdjhbhcpf
Beskrivning 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…
Filstorlek 81.62 KB
Antal Installationer 79
Aktuell Version 0.1
Senast Uppdaterad 2016-10-26
Publiceringsdatum 2016-10-26
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare SnowDonut
Betalningssätt free
Stödda Språk 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"
    ]
}