hckr news

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

Apa itu hckr news?

hckr news adalah ekstensi Chrome yang dikembangkan oleh https://hckrnews.com, dan fitur utamanya adalah "Add functionality to news.ycombinator.com and hckrnews.com".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi hckr news

Unduh file ekstensi hckr news dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama hckr news hckr news
ID mnlaodleonmmfkdhfofamacceeikgecp
URL Resmi https://chromewebstore.google.com/detail/hckr-news/mnlaodleonmmfkdhfofamacceeikgecp
Deskripsi Add functionality to news.ycombinator.com and hckrnews.com
Ukuran File 52.15 KB
Jumlah Instalasi 1,010
Versi Saat Ini 2.0
Terakhir Diperbarui 2020-01-07
Tanggal Publikasi 2020-01-07
Penilaian 4.59/5 Total 17 Penilaian
Pengembang https://hckrnews.com
Tipe Pembayaran free
Situs Ekstensi http://hckrnews.com/about.html
Bahasa yang Didukung 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"
            ]
        }
    ]
}