VG News

Makes the front page of VG.no look like Hacker News.

什么是VG News?

VG News是由Michael Johansen开发的Chrome扩展程序,该扩展的主要功能是“Makes the front page of VG.no look like Hacker News.”。

扩展截图

screenshot

下载VG News扩展crx文件

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

扩展使用说明

                        This extension was made for demo purposes in relation to a 30-minute workshop on Chrome extensions where I work. Use both the extension and the code (see GitHub) at your own discretion. I take absolutely no responsibility for anyones use of the extension or the code. Questions? Send me an email.                    

扩展基本信息

名称 VG News VG News
ID efehmpikadfdbcabkelfcggeodojbkej
官方URL https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej
简介 Makes the front page of VG.no look like Hacker News.
文件大小 55.61 KB
安装次数 40
当前版本 0.4.0
更新时间 2016-10-11
上架时间 2016-10-11
开发者 Michael Johansen
付费类型 free
扩展官网 https://github.com/michaeljohansen/vg-news
支持的语言 no
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VG News",
    "description": "Makes the front page of VG.no look like Hacker News.",
    "manifest_version": 2,
    "version": "0.4.0",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.vg.no\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "vgnews.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "128.png"
    ]
}