Hacker News New Tab

Open Hacker News Links in new tab

什么是Hacker News New Tab?

Hacker News New Tab是由akhil开发的Chrome扩展程序,该扩展的主要功能是“Open Hacker News Links in new tab”。

扩展截图

screenshot

下载Hacker News New Tab扩展crx文件

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

扩展使用说明

                        Hacker News (http://news.ycombinator.com/news) links usually open in the same page. This extension updates the links to open in a new tab.                    

扩展基本信息

名称 Hacker News New Tab Hacker News New Tab
ID fmlhpmapmklbhoekajeimbodkpinefmo
官方URL https://chromewebstore.google.com/detail/hacker-news-new-tab/fmlhpmapmklbhoekajeimbodkpinefmo
简介 Open Hacker News Links in new tab
文件大小 6.64 KB
安装次数 87
当前版本 2.0
更新时间 2016-05-27
上架时间 2016-05-27
评分 4.00/5 共5次评分
开发者 akhil
电子邮箱 [email protected]
付费类型 free
扩展官网 http://akhil.me
支持的语言 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News New Tab",
    "manifest_version": 2,
    "version": "2.0",
    "description": "Open Hacker News Links in new tab",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/hackerne.ws\/*",
                "https:\/\/hackerne.ws\/*"
            ],
            "js": [
                "ext.js"
            ]
        }
    ]
}