Tab Deque

A webextension for better tab handling. Inspired by Opera 12.

什麼是Tab Deque?

Tab Deque是由Sebastian Blask開發的Chrome擴展程式,該擴展的主要功能是“A webextension for better tab handling. Inspired by Opera 12.”。

擴展截圖

下載Tab Deque擴展crx文件

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

擴展使用說明

                        Tab Deque
========

A webextension for better tab handling. Inspired by Opera 12 and its `Activate the last active tab` setting, which is not the same as `most recently used tab` or `last tab selected` other extensions provide.

Most users will recognize the behaviour from the way windows are handled on their Desktop. When using Windows(with stacking disabled) or for example Xfce under Linux, opening a window adds it to the taskbar, clicking another one will focus that one, closing or minimizing will bring the previous one back to focus. This extension will do that and more.

Building a deque of tabs:
-------------------------

 - When a tab is closed, it is removed from the deque. If it was the current one, the next one from the front of the deque is selected.
 - Opening a tab in the background adds it at the end of the deque, so it will be selected after all others have been closed.
 - Opening a tab in the foreground or selecting a tab moves it to the front of the deque.
 - You can also send a tab to the end of the deque, which means the next one from the front of the deque is selected. It's bit like minimizing a window on your desktop, but as there is no desktop to show when all other tabs have been "minimized"/closed, the tab gets re-selected. This is currently an option in the tab's (if supported by the browser) and page's context menu.  Ideally a simple left click would do that too (like a previous version of this extension based on a different API did), but there is currently no API for detecting clicks on tabs. There is also a keyboard shortcut: `Ctrl-Down`.
 - A kind of undo of the latter is `Ctrl-Up`, it selects the tab at the end of the deque and moves it to the front of the deque.

Feedback
--------

You can report bugs or make feature requests on https://github.com/sblask/webextension-tab-deque

Patches are welcome.                    

擴展基本資訊

名稱 Tab Deque Tab Deque
ID dljacedcljhnjnmggojiihehagbijgfj
官方網址 https://chromewebstore.google.com/detail/tab-deque/dljacedcljhnjnmggojiihehagbijgfj
簡介 A webextension for better tab handling. Inspired by Opera 12.
檔案大小 60.31 KB
安裝次數 59
目前版本 2.1.1
更新時間 2023-07-26
上架時間 2017-11-27
開發者 Sebastian Blask
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/sblask/webextension-tab-deque
說明頁面URL https://github.com/sblask/webextension-tab-deque
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "commands": {
        "select-tab-from-end-of-tabdeque": {
            "description": "Select tab from end of TabDeque",
            "suggested_key": {
                "default": "Ctrl+Up"
            }
        },
        "send-tab-to-end-of-tabdeque": {
            "description": "Send tab to end of TabDeque",
            "suggested_key": {
                "default": "Ctrl+Down"
            }
        }
    },
    "description": "A webextension for better tab handling. Inspired by Opera 12.",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-tab-deque",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "Tab Deque",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "version": "2.1.1"
}