Hacker News discussion
Displays an icon linking to comments on Hacker News for the current page.
Vad är Hacker News discussion?
Hacker News discussion är en Chrome-tillägg utvecklad av Adam Sapek, och dess huvudfunktion är "Displays an icon linking to comments on Hacker News for the current page.".
Tilläggsskärmbilder
Ladda ner Hacker News discussion-förlängningens CRX-fil
Ladda ner Hacker News discussion-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | iggcipafbcjfofibfhhelnipahhepmkd |
| Officiell webbadress | https://chromewebstore.google.com/detail/hacker-news-discussion/iggcipafbcjfofibfhhelnipahhepmkd |
| Beskrivning | Displays an icon linking to comments on Hacker News for the current page. |
| Filstorlek | 8.75 KB |
| Antal Installationer | 125 |
| Aktuell Version | 1.9 |
| Senast Uppdaterad | 2015-09-20 |
| Publiceringsdatum | 2015-09-19 |
| Betyg | 5.00/5 Totalt 7 Betyg |
| Utvecklare | Adam Sapek |
| Betalningssätt | free |
| Stödda Språk | 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
} | |