VG News

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

What is VG News?

VG News is a Chrome extension developed by Michael Johansen, and its main feature is "Makes the front page of VG.no look like Hacker News.".

Extension Screenshots

screenshot

Download VG News Extension CRX File

Download VG News extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name VG News VG News
ID efehmpikadfdbcabkelfcggeodojbkej
Official URL https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej
Description Makes the front page of VG.no look like Hacker News.
File Size 55.61 KB
Installation Count 40
Current Version 0.4.0
Last Updated 2016-10-11
Publish Date 2016-10-11
Developer Michael Johansen
Payment Type free
Extension Website https://github.com/michaeljohansen/vg-news
Supported Languages 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"
    ]
}