Tabs to the Front

Optionally open new tabs in the front.

什麼是Tabs to the Front?

Tabs to the Front是由Great Chrome Extensions開發的Chrome擴展程式,該擴展的主要功能是“Optionally open new tabs in the front.”。

擴展截圖

screenshot

下載Tabs to the Front擴展crx文件

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

擴展使用說明

                        Causes new tabs to be brought to the front when opened.

The standard behaviour of Chrome is to only open tabs to the front when pressing the Ctrl key - which is not an option for touch displays or people with physical disabilities. The Chrome devs have stated several times that they do not intend to change this.

Features

* Brings newly opened tabs in the front.
* Popup menu allows you to disable it for a period of time.
* Options page (using new Chrome v40 styles).
* Change the button between toggle state or popup menu.
* "Donation..." link can be hidden via the options page.
* "Options..." link can be disable via options page (you can still open it by right-clicking or on the Extensions page).
* A domain ignore list - if both tabs are on ignored domains then don't bring the new one to the front.
* Hotkey support to toggle state and toggle ignoring domain.
* Hold the "Ctrl" key to disable.
* Locale support (translations welcome).                    

擴展基本資訊

名稱 Tabs to the Front Tabs to the Front
ID hiembaoomcehoiehhdldabfgnmphappc
官方網址 https://chromewebstore.google.com/detail/tabs-to-the-front/hiembaoomcehoiehhdldabfgnmphappc
簡介 Optionally open new tabs in the front.
檔案大小 20.35 KB
安裝次數 89,119
目前版本 2.6.3
更新時間 2024-03-04
上架時間 2017-06-18
評分 4.61/5 共 173 次評分
開發者 Great Chrome Extensions
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Rycochet/Chrome/tree/master/Tabs%20to%20the%20Front
說明頁面URL https://github.com/Rycochet/Chrome/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "t2tf",
    "version": "2.6.3",
    "manifest_version": 3,
    "default_locale": "en",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/tabs-to-the-front\/hiembaoomcehoiehhdldabfgnmphappc",
    "author": "Ryc O'Chet ",
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ],
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_title": "__MSG_extTitleEnabled__",
        "default_icon": "icon48.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "__MSG_keyboardShortcutToggle__"
        },
        "ignore": {
            "suggested_key": {
                "default": "Alt+Shift+T"
            },
            "description": "__MSG_keyboardShortcutIgnore__"
        }
    },
    "minimum_chrome_version": "88"
}