VG News
Makes the front page of VG.no look like Hacker News.
什麼是VG News?
VG News是由Michael Johansen開發的Chrome擴展程式,該擴展的主要功能是“Makes the front page of VG.no look like Hacker News.”。
擴展截圖
下載VG News擴展crx文件
下載VG News擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | efehmpikadfdbcabkelfcggeodojbkej |
官方網址 | https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej |
簡介 | Makes the front page of VG.no look like Hacker News. |
檔案大小 | 55.61 KB |
安裝次數 | 40 |
目前版本 | 0.4.0 |
更新時間 | 2016-10-11 |
上架時間 | 2016-10-11 |
開發者 | Michael Johansen |
付費類型 | free |
擴展官網 | https://github.com/michaeljohansen/vg-news |
支援的語言 | 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" ] } |