Last Tabs

Provides a menu with your previous tabs in order of access - never loose track of you last tab again!

¿Qué es Last Tabs?

Last Tabs es una extensión de Chrome desarrollada por Sam Larison, y su función principal es "Provides a menu with your previous tabs in order of access - never loose track of you last tab again!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Last Tabs

Descarga archivos de extensión Last Tabs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This is NOT a history extension... this extension is to deal with tabs that are open.  If you close a tab accidentally you can right click a tab and pick re-open closed tab as many times as you like.  

Now with configurable keyboard shortcuts to jump to your last tab or cycle through the last 3 tabs you were on.

This extension deals with SELECTED TAB HISTORY... when you have many tabs open which one did you have selected previously?  This extension will help you there.  

Did you lose your last tab?  The last tab you were on will be at the top of the list.

Also useful to close many tabs quickly (click and drag with middle mouse button over the list).  Fortunately Google Chrome added a feature that lets you shift click to select a bunch of tabs at once to close many.  You can also click and drag the search results in the last tab popup to select multiple tabs, then drag them to a new window.

This extension provides an alternate TabMenu.  When you first load the extension you won't see any tabs.  This is OK, because you haven't visited any tabs to create any tab click history yet.  Click on a few of your tabs, then check the menu.  You should see your previous tab at the top.  You can click the menu very quickly and select the first option repeatedly.  This should flip you back and forth between your two most recent tabs, no matter where they are in the tab bar.  

Search feature will search both tab titles and URLs, if you put a space it will have to find each word in either the tile or the URL.

You can configure the maximum number of tab click history states that will be saved for each window full of tabs you are running.  You can also enable a feature that collects icons for the page you view.  If you view a tab too quickly its possible an icon won't be generated or it won't show up in tab click history.  Under normal usage however, if you ever loose the tab you were just on and can't find it or don't want to look for it in a list, this is the extension for you, because it should be right at the top!  Enjoy.  

When updates occur you may loose your tab click history.  This extension provides similar functionality to Tab Menu but provides the key feature of showing tabs based on how recently they were viewed.  Also can generate thumbnails (beta).  Middle clicking to close tab menu items is now supported.  A bug where closing windows could change tabs on the next window has been resolved.  

If you'd like to help please star this issue: http://code.google.com/p/chromium/issues/detail?id=37739

or Rate 5 stars below

Configurable default functionality on a per window basis.  There is also functionality that supports selecting the correct tab if you detach a tab dragging it out of the window.                    

Información Básica de la Extensión

Nombre Last Tabs Last Tabs
ID ehdbaonmnanalnmmlkgdnkkcdlppjhhc
URL Oficial https://chromewebstore.google.com/detail/last-tabs/ehdbaonmnanalnmmlkgdnkkcdlppjhhc
Descripción Provides a menu with your previous tabs in order of access - never loose track of you last tab again!
Tamaño del Archivo 41.36 KB
Cantidad de Instalaciones 890
Versión Actual 0.0.4.10
Última Actualización 2018-02-11
Fecha de Publicación 2018-02-10
Calificación 4.29/5 Total de 21 Calificaciones
Desarrollador Sam Larison
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad http://vidsbee.com/ColorPick/Privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Provides a menu with your previous tabs in order of access - never loose track of you last tab again!",
    "name": "Last Tabs",
    "browser_action": {
        "default_icon": "img\/icon19.png",
        "default_title": "LASTabs",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "commands": {
        "navigate-last-tab-1": {
            "suggested_key": {
                "default": "Alt+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Take me to the last tab I was on"
        },
        "navigate-last-tab-2": {
            "suggested_key": {
                "default": "Alt+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "Take me two tabs back"
        },
        "navigate-last-tab-3": {
            "suggested_key": {
                "default": "Alt+Shift+3",
                "mac": "Command+Shift+5"
            },
            "description": "Take me three tabs back"
        }
    },
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "",
        "tabs"
    ],
    "version": "0.0.4.10"
}