Hacked News
A simple, clean Hacker News theme.
Co to jest Hacked News?
Hacked News to rozszerzenie Chrome opracowane przez Bala Clark, a jego główną funkcją jest „A simple, clean Hacker News theme.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hacked News
Pobierz pliki rozszerzeń Hacked 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
Provides a clean and readable Hacker News experience as well as some other optional HN enhancements. Included Enhancements: * View text only versions of articles (via ViewText.org) * Open articles in a new window * Article toolbar with HN meta data and voting functionality This extension is open source and source code is available on github: https://github.com/balaclark/hacked-news
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | klijiafmajbhbkhjbfajmdbogjlcibeb |
Oficjalny URL | https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb |
Opis | A simple, clean Hacker News theme. |
Rozmiar pliku | 37.65 KB |
Liczba instalacji | 18 |
Aktualna Wersja | 0.1.2 |
Ostatnia Aktualizacja | 2013-08-11 |
Data Publikacji | 2013-08-11 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | Bala Clark |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacked News", "version": "0.1.2", "description": "A simple, clean Hacker News theme.", "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "events.js" ], "persistent": false }, "options_page": "options.html", "offline_enabled": true, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "http:\/\/www.hnsearch.com\/*", "https:\/\/news.ycombinator.com\/*", "https:\/\/www.hnsearch.com\/*" ], "css": [ "hn.css" ], "js": [ "hn.js" ] } ] } |