Right Click Opens Link New Tab

Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back

什么是Right Click Opens Link New Tab?

Right Click Opens Link New Tab是由Bill Hedworth开发的Chrome扩展程序,该扩展的主要功能是“Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back”。

扩展截图

screenshot

下载Right Click Opens Link New Tab扩展crx文件

下载Right Click Opens Link New Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Opens links with a right click in background (default) or foreground maintaining correct order

All perfectly legit and clean source code just upgraded for manifest v3 available here https://github.com/Bigsy/rightclicklinkopentab                    

扩展基本信息

名称 Right Click Opens Link New Tab Right Click Opens Link New Tab
ID nfcebdpicmeliagdpkofijnaggkghocc
官方URL https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc
简介 Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back
文件大小 152 KB
安装次数 450
当前版本 0.0.2
更新时间 2024-02-02
上架时间 2024-01-06
评分 5.00/5 共5次评分
开发者 Bill Hedworth
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link New Tab",
    "version": "0.0.2",
    "description": "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Bill Hedworth",
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "config\/settings.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "options_ui": {
        "page": "config\/settings.html",
        "open_in_tab": true
    },
    "short_name": "Tab Opener"
}