HN Enhance
An extension that enhances news.ycombinator website.
Apa itu HN Enhance?
HN Enhance adalah ekstensi Chrome yang dikembangkan oleh Alvaro Bernal G, dan fitur utamanya adalah "An extension that enhances news.ycombinator website.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi HN Enhance
Unduh file ekstensi HN Enhance 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
Features: - Displays a military rank badge alongside the username. Rank is obtained according to the following proportion: Karma 1:1 Seniority. - A minimalist black theme that is easy to to the eyes.
Informasi Dasar Ekstensi
Nama | HN Enhance |
ID | dmnbgmcilgmcmlhgjkociikeihbkbcdp |
URL Resmi | https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp |
Deskripsi | An extension that enhances news.ycombinator website. |
Ukuran File | 74.79 KB |
Jumlah Instalasi | 93 |
Versi Saat Ini | 0.1.0 |
Terakhir Diperbarui | 2019-04-04 |
Tanggal Publikasi | 2019-04-04 |
Penilaian | 4.50/5 Total 8 Penilaian |
Pengembang | Alvaro Bernal G |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://alvarobg.com |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HN Enhance", "manifest_version": 2, "author": "Alvaro Bernal", "version": "0.1.0", "description": "An extension that enhances news.ycombinator website.", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icons\/icon-128.png", "default_title": "HN Enhance" }, "web_accessible_resources": [ "*.woff", "*.svg" ], "icons": { "16": "icons\/icon-16.png", "38": "icons\/icon-38.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [], "content_scripts": [ { "matches": [ "http:\/\/news.ycombinator.com\/*", "https:\/\/news.ycombinator.com\/*" ], "css": [ "style.css", "ranks.css" ], "js": [ "contentscript.js" ], "run_at": "document_start", "all_frames": false } ] } |