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
官方網址 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
電子郵箱 [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"
    }
}