Hacked News
A simple, clean Hacker News theme.
Hacked Newsとは何ですか?
Hacked NewsはBala Clarkによって開発されたChromeの拡張機能で、その主な機能は「A simple, clean Hacker News theme.」です。
拡張機能のスクリーンショット
Hacked News拡張機能のCRXファイルをダウンロード
Hacked News拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
ID | klijiafmajbhbkhjbfajmdbogjlcibeb |
公式URL | https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb |
説明 | A simple, clean Hacker News theme. |
ファイルサイズ | 37.65 KB |
インストール数 | 18 |
現在のバージョン | 0.1.2 |
最終更新日 | 2013-08-11 |
公開日 | 2013-08-11 |
評価 | 4.00/5 合計 4 レビュー |
開発者 | Bala Clark |
支払い方法 | free |
対応言語 | 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" ] } ] } |