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
公式URL 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
Eメール [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"
        }
    }
}