VG News

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

Vad är VG News?

VG News är en Chrome-tillägg utvecklad av Michael Johansen, och dess huvudfunktion är "Makes the front page of VG.no look like Hacker News.".

Tilläggsskärmbilder

screenshot

Ladda ner VG News-förlängningens CRX-fil

Ladda ner VG News-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn VG News VG News
ID efehmpikadfdbcabkelfcggeodojbkej
Officiell webbadress https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej
Beskrivning Makes the front page of VG.no look like Hacker News.
Filstorlek 55.61 KB
Antal Installationer 40
Aktuell Version 0.4.0
Senast Uppdaterad 2016-10-11
Publiceringsdatum 2016-10-11
Utvecklare Michael Johansen
Betalningssätt free
Tilläggswebbplats https://github.com/michaeljohansen/vg-news
Stödda Språk 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"
    ]
}