Hacker News discussion
Displays an icon linking to comments on Hacker News for the current page.
什么是Hacker News discussion?
Hacker News discussion是由Adam Sapek开发的Chrome扩展程序,该扩展的主要功能是“Displays an icon linking to comments on Hacker News for the current page.”。
扩展截图
下载Hacker News discussion扩展crx文件
下载Hacker News discussion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The icon is displayed only for pages that have been discussed on Hacker News. Keyboard shortcuts: Ctrl+Y: open comments in a new tab Alt+Y: open comments in the current tab The extension does not collect any data. Note however that the URLs of pages you visit will be sent over https to HNSearch (https://hn.algolia.com) which is hosted by a YC company Algolia. The extension does not have permission to access data on websites you visit.
扩展基本信息
名称 | Hacker News discussion |
ID | iggcipafbcjfofibfhhelnipahhepmkd |
官方URL | https://chromewebstore.google.com/detail/hacker-news-discussion/iggcipafbcjfofibfhhelnipahhepmkd |
简介 | Displays an icon linking to comments on Hacker News for the current page. |
文件大小 | 8.75 KB |
安装次数 | 125 |
当前版本 | 1.9 |
更新时间 | 2015-09-20 |
上架时间 | 2015-09-19 |
评分 | 5.00/5 共7次评分 |
开发者 | Adam Sapek |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News discussion", "version": "1.9", "description": "Displays an icon linking to comments on Hacker News for the current page.", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "y.png", "default_title": "See discussion on HN" }, "commands": { "newtabHN": { "suggested_key": { "default": "Ctrl+Y" }, "description": "Open HN comments in a new tab" }, "_execute_page_action": { "suggested_key": { "default": "Alt+Y" } } }, "permissions": [ "tabs", "https:\/\/hn.algolia.com\/*" ], "icons": { "128": "y128.png" }, "manifest_version": 2 } |