Hacked News
A simple, clean Hacker News theme.
Cos'è Hacked News?
Hacked News è un'estensione di Chrome sviluppata da Bala Clark, e la sua funzione principale è "A simple, clean Hacker News theme.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hacked News
Scarica i file di estensione Hacked News in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | klijiafmajbhbkhjbfajmdbogjlcibeb |
URL Ufficiale | https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb |
Descrizione | A simple, clean Hacker News theme. |
Dimensione del File | 37.65 KB |
Conteggio Installazioni | 18 |
Versione Corrente | 0.1.2 |
Ultimo Aggiornamento | 2013-08-11 |
Data di Pubblicazione | 2013-08-11 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | Bala Clark |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |