New Tab Always

This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…

什么是New Tab Always?

New Tab Always是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…”。

下载New Tab Always扩展crx文件

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

扩展使用说明

                        This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link will open in a new tab. When disabled (black icon), links will open as they would by default.                    

扩展基本信息

名称 New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
官方URL https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
简介 This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…
文件大小 113 KB
安装次数 65
当前版本 2.1
更新时间 2018-06-09
上架时间 2018-06-09
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Always",
    "version": "2.1",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png",
        "256": "icon-256.png",
        "512": "icon-512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "128": "icon-128.png",
            "256": "icon-256.png",
            "512": "icon-512.png"
        }
    },
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ],
    "options_page": "options.html"
}