Hacker News

Displays recent stories from Hacker News

Cos'è Hacker News?

Hacker News è un'estensione di Chrome sviluppata da adam.albrecht, e la sua funzione principale è "Displays recent stories from Hacker News".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hacker News

Scarica i file di estensione Hacker News in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension displays the latest articles from Y Combinator's Hacker News (news.ycombinator.com).  It also allows you to submit your current tab to Hacker News and perform a search of past Hacker News stories.

Have any bugs or suggestions?  Log them here:  http://github.com/adamalbrecht/hacker-news-for-chrome/issues                    

Informazioni di Base sull'Estensione

Nome Hacker News Hacker News
ID geancnifhbkbjijfkcjjdnfemppmcjmk
URL Ufficiale https://chromewebstore.google.com/detail/hacker-news/geancnifhbkbjijfkcjjdnfemppmcjmk
Descrizione Displays recent stories from Hacker News
Dimensione del File 25.31 KB
Conteggio Installazioni 1,344
Versione Corrente 3.21.0
Ultimo Aggiornamento 2020-03-11
Data di Pubblicazione 2020-03-10
Valutazione 4.56/5 Totale 36 Valutazioni
Sviluppatore adam.albrecht
Tipo di Pagamento free
Sito Web dell'Estensione https://www.adamalbrecht.com
URL della Pagina di Aiuto https://github.com/adamalbrecht/hacker-news-for-chrome
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News",
    "version": "3.21.0",
    "description": "Displays recent stories from Hacker News",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Hacker News",
        "default_icon": "icon18.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "https:\/\/news.ycombinator.com\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com; object-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com"
}