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 |
官方網址 | 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 } |