VG News

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

Cos'è VG News?

VG News è un'estensione di Chrome sviluppata da Michael Johansen, e la sua funzione principale è "Makes the front page of VG.no look like Hacker News.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione VG News

Scarica i file di estensione VG News in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome VG News VG News
ID efehmpikadfdbcabkelfcggeodojbkej
URL Ufficiale https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej
Descrizione Makes the front page of VG.no look like Hacker News.
Dimensione del File 55.61 KB
Conteggio Installazioni 40
Versione Corrente 0.4.0
Ultimo Aggiornamento 2016-10-11
Data di Pubblicazione 2016-10-11
Sviluppatore Michael Johansen
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/michaeljohansen/vg-news
Lingue Supportate 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"
    ]
}