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" ] } ] } |