HN Blocklist

This extension allows you to block users on Hacker News.

Apa itu HN Blocklist?

HN Blocklist adalah ekstensi Chrome yang dikembangkan oleh https://www.morgante.net, dan fitur utamanya adalah "This extension allows you to block users on Hacker News.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi HN Blocklist

Unduh file ekstensi HN Blocklist 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

                        While Hacker News is in general a great community, sometimes certain users consistently rub you the wrong way. This extension allows you to avoid long arguments by blocking said users.

Within comment threads, a new "block" button is added to block a user. Once blocked, all the user's comments are blocked across Hacker News for you. You can unblock users at any time.

The blocklist is personal to you and not shared with other users. Blocking applies only to comments, not submissions.                    

Informasi Dasar Ekstensi

Nama HN Blocklist HN Blocklist
ID cgphkkepnnepcjnjgboihccobkjoecoc
URL Resmi https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc
Deskripsi This extension allows you to block users on Hacker News.
Ukuran File 22.6 KB
Jumlah Instalasi 79
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2015-08-04
Tanggal Publikasi 2015-08-03
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://www.morgante.net
Tipe Pembayaran free
Situs Ekstensi https://github.com/morgante/hn_blocklist
URL Halaman Bantuan https://github.com/morgante/hn_blocklist
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HN Blocklist",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension allows you to block users on Hacker News.",
    "homepage_url": "https:\/\/github.com\/morgante\/hn_blocklist",
    "permissions": [
        "storage",
        "http:\/\/news.ycombinator.com\/*",
        "https:\/\/news.ycombinator.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png"
    }
}