VG News
Makes the front page of VG.no look like Hacker News.
Co to jest VG News?
VG News to rozszerzenie Chrome opracowane przez Michael Johansen, a jego główną funkcją jest „Makes the front page of VG.no look like Hacker News.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia VG News
Pobierz pliki rozszerzeń VG News w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | efehmpikadfdbcabkelfcggeodojbkej |
Oficjalny URL | https://chrome.google.com/webstore/detail/vg-news/efehmpikadfdbcabkelfcggeodojbkej |
Opis | Makes the front page of VG.no look like Hacker News. |
Rozmiar pliku | 55.61 KB |
Liczba instalacji | 40 |
Aktualna Wersja | 0.4.0 |
Ostatnia Aktualizacja | 2016-10-11 |
Data Publikacji | 2016-10-11 |
Deweloper | Michael Johansen |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/michaeljohansen/vg-news |
Obsługiwane Języki | 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" ] } |