Open Links in New Tab

This extension allows you to decide which websites you want to automatically open in a new tab.

什么是Open Links in New Tab?

Open Links in New Tab是由Aran Sandhu开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to decide which websites you want to automatically open in a new tab.”。

扩展截图

screenshot
screenshot

下载Open Links in New Tab扩展crx文件

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

扩展使用说明

                        This extension will allow you to create a list of websites so that whenever you click a link on one of those websites, the link will automatically open in a new tab. Perfect for websites like Google, Reddit, and YouTube.                    

扩展基本信息

名称 Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
官方URL https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
简介 This extension allows you to decide which websites you want to automatically open in a new tab.
文件大小 111 KB
安装次数 1,000
当前版本 1.05
更新时间 2020-08-18
上架时间 2018-08-07
评分 2.11/5 共9次评分
开发者 Aran Sandhu
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open Links in New Tab",
    "description": "This extension allows you to decide which websites you want to automatically open in a new tab.",
    "version": "1.05",
    "author": "Aran Sandhu",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-3.3.1.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "jquery-3.3.1.js",
                "util.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}