New Adjacent Tab

Opens a new tab to the right or left of the current one.

什麼是New Adjacent Tab?

New Adjacent Tab是由https://www.adelsaoud.com開發的Chrome擴展程式,該擴展的主要功能是“Opens a new tab to the right or left of the current one.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載New Adjacent Tab擴展crx文件

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

擴展使用說明

                        Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser.

New Adjacent Tab allows you to open tabs to the right/left through keyboard shortcuts, the context menu, and the extension's icon.

All settings are configurable and are automatically synced across your devices if you're signed in to Google Chrome.

The default keyboard shortcuts are:
- Alt+T to open a new tab to the right of the current one.
- Alt+H to open a new tab to the left of the current one.                    

擴展基本資訊

名稱 New Adjacent Tab New Adjacent Tab
ID fommpldicogfgegfpcoibmhkbbdpodjg
官方網址 https://chromewebstore.google.com/detail/new-adjacent-tab/fommpldicogfgegfpcoibmhkbbdpodjg
簡介 Opens a new tab to the right or left of the current one.
檔案大小 10.7 KB
安裝次數 7,266
目前版本 1.0.2
更新時間 2023-09-14
上架時間 2019-09-23
評分 4.90/5 共 41 次評分
開發者 https://www.adelsaoud.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.adelsaoud.com/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "New Adjacent Tab",
    "version": "1.0.2",
    "description": "Opens a new tab to the right or left of the current one.",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": [],
    "options_ui": {
        "page": "options.html"
    },
    "commands": {
        "newTabToTheRight": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "New tab to the right"
        },
        "newTabToTheLeft": {
            "suggested_key": {
                "default": "Alt+H"
            },
            "description": "New tab to the left"
        }
    }
}