VG News
Makes the front page of VG.no look like Hacker News.
Apa itu VG News?
VG News adalah ekstensi Chrome yang dikembangkan oleh Michael Johansen, dan fitur utamanya adalah "Makes the front page of VG.no look like Hacker News.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi VG News
Unduh file ekstensi VG News dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | efehmpikadfdbcabkelfcggeodojbkej |
URL Resmi | https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej |
Deskripsi | Makes the front page of VG.no look like Hacker News. |
Ukuran File | 55.61 KB |
Jumlah Instalasi | 40 |
Versi Saat Ini | 0.4.0 |
Terakhir Diperbarui | 2016-10-11 |
Tanggal Publikasi | 2016-10-11 |
Pengembang | Michael Johansen |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/michaeljohansen/vg-news |
Bahasa yang Didukung | 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" ] } |