VG News

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

Wat is VG News?

VG News is een Chrome-extensie ontwikkeld door Michael Johansen, en de belangrijkste functie is "Makes the front page of VG.no look like Hacker News.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie VG News

Download VG News-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam VG News VG News
ID efehmpikadfdbcabkelfcggeodojbkej
Officiële URL https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej
Beschrijving Makes the front page of VG.no look like Hacker News.
Bestandsgrootte 55.61 KB
Aantal Installaties 40
Huidige Versie 0.4.0
Laatst Bijgewerkt 2016-10-11
Publicatiedatum 2016-10-11
Ontwikkelaar Michael Johansen
Betalingswijze free
Extensiewebsite https://github.com/michaeljohansen/vg-news
Ondersteunde Talen 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"
    ]
}