hckr news

Add functionality to news.ycombinator.com and hckrnews.com

Cos'è hckr news?

hckr news è un'estensione di Chrome sviluppata da https://hckrnews.com, e la sua funzione principale è "Add functionality to news.ycombinator.com and hckrnews.com".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione hckr news

Scarica i file di estensione hckr 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

                        The browser extension adds a few features to both Hacker News and hckr news:

* Highlight New Comments
* Identify New Comments on hckrnews.com
* Alexander Kirk's collapsible threads                    

Informazioni di Base sull'Estensione

Nome hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
URL Ufficiale https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
Descrizione Add functionality to news.ycombinator.com and hckrnews.com
Dimensione del File 52.15 KB
Conteggio Installazioni 1,010
Versione Corrente 2.0
Ultimo Aggiornamento 2020-01-07
Data di Pubblicazione 2020-01-07
Valutazione 4.59/5 Totale 17 Valutazioni
Sviluppatore https://hckrnews.com
Tipo di Pagamento free
Sito Web dell'Estensione http://hckrnews.com/about.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hckr news",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "72": "hckrnews-72.png"
    },
    "description": "Add functionality to news.ycombinator.com and hckrnews.com",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background-script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/hckrnews.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "hckr_inject.js"
            ]
        },
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/item*"
            ],
            "js": [
                "browser-polyfill.js",
                "hn_inject.js",
                "jquery-1.7.1.min.js",
                "hacker_news_comment_coll.user.js"
            ]
        }
    ]
}