Right Click Opens Link in a Background Tab

Right clicking a link opens the link in a new background tab.

Right Click Opens Link in a Background Tabとは何ですか?

Right Click Opens Link in a Background TabはEtheryteによって開発されたChromeの拡張機能で、その主な機能は「Right clicking a link opens the link in a new background tab.」です。

拡張機能のスクリーンショット

screenshot

Right Click Opens Link in a Background Tab拡張機能のCRXファイルをダウンロード

Right Click Opens Link in a Background Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension makes right clicking on links open the link in a new background tab. In short, the same behavior as middle mouse click or Cmd + Click on a link, but for the right mouse button. This makes opening links in new tabs a breeze on modern trackpads, where gestures already allow you to do most navigation operations without ever needing your keyboard.

This extension requires the following permissions:  

 - Access to your tabs. This is required to add new tabs in the correct order.
 - Access to all pages. This is required to listen for right clicks on links.

This extension does not gather any sort of analytics, tracking, or other such information.                    

拡張機能の基本情報

名前 Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
公式URL https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
説明 Right clicking a link opens the link in a new background tab.
ファイルサイズ 25.01 KB
インストール数 988
現在のバージョン 1.2
最終更新日 2024-01-05
公開日 2023-01-04
評価 4.50/5 合計 8 レビュー
開発者 Etheryte
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
ヘルプページのURL https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link in a Background Tab",
    "description": "Right clicking a link opens the link in a new background tab.",
    "version": "1.2",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "512": "icons\/512.png"
    }
}