Last Tabs

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

什麼是Last Tabs?

Last Tabs是由Sam Larison開發的Chrome擴展程式,該擴展的主要功能是“Provides a menu with your previous tabs in order of access - never loose track of you last tab again!”。

擴展截圖

screenshot
screenshot

下載Last Tabs擴展crx文件

下載Last Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Last Tabs Last Tabs
ID ehdbaonmnanalnmmlkgdnkkcdlppjhhc
官方網址 https://chromewebstore.google.com/detail/last-tabs/ehdbaonmnanalnmmlkgdnkkcdlppjhhc
簡介 Provides a menu with your previous tabs in order of access - never loose track of you last tab again!
檔案大小 41.36 KB
安裝次數 890
目前版本 0.0.4.10
更新時間 2018-02-11
上架時間 2018-02-10
評分 4.29/5 共 21 次評分
開發者 Sam Larison
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://vidsbee.com/ColorPick/Privacy
支援的語言 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"
}