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
电子邮箱 [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"
    }
}