Hacker News discussion

Displays an icon linking to comments on Hacker News for the current page.

Wat is Hacker News discussion?

Hacker News discussion is een Chrome-extensie ontwikkeld door Adam Sapek, en de belangrijkste functie is "Displays an icon linking to comments on Hacker News for the current page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Hacker News discussion

Download Hacker News discussion-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Hacker News discussion Hacker News discussion
ID iggcipafbcjfofibfhhelnipahhepmkd
Officiële URL https://chromewebstore.google.com/detail/hacker-news-discussion/iggcipafbcjfofibfhhelnipahhepmkd
Beschrijving Displays an icon linking to comments on Hacker News for the current page.
Bestandsgrootte 8.75 KB
Aantal Installaties 125
Huidige Versie 1.9
Laatst Bijgewerkt 2015-09-20
Publicatiedatum 2015-09-19
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar Adam Sapek
Betalingswijze free
Ondersteunde Talen 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
}