Open link in new tab

This extension forces links in a page to open in new tab.

什么是Open link in new tab?

Open link in new tab是由Naren开发的Chrome扩展程序,该扩展的主要功能是“This extension forces links in a page to open in new tab.”。

扩展截图

screenshot

下载Open link in new tab扩展crx文件

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

扩展使用说明

                        This extension will help you to force links in pages to be open in new tab. You can configure the urls in the options..

Change log:

Version 1.0.7:

Fixed a bug that prevented users from saving the options properly. Thanks to @joelw135                    

扩展基本信息

名称 Open link in new tab Open link in new tab
ID lahhghmllilhdphkncabilobmcokgfag
官方URL https://chrome.google.com/webstore/detail/open-link-in-new-tab/lahhghmllilhdphkncabilobmcokgfag
简介 This extension forces links in a page to open in new tab.
文件大小 86.17 KB
安装次数 4,000
当前版本 1.0.7
更新时间 2015-03-05
上架时间 2015-03-05
评分 3.24/5 共42次评分
开发者 Naren
付费类型 free
扩展官网 http://twitter.com/narens
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open link in new tab",
    "version": "1.0.7",
    "manifest_version": 2,
    "description": "This extension forces links in a page to open in new tab.",
    "author": "Narendran",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "homepage_url": "http:\/\/twitter.com\/narens",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/index.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ]
}