HN Enhance

An extension that enhances news.ycombinator website.

What is HN Enhance?

HN Enhance is a Chrome extension developed by Alvaro Bernal G, and its main feature is "An extension that enhances news.ycombinator website.".

Extension Screenshots

screenshot
screenshot
screenshot

Download HN Enhance Extension CRX File

Download HN Enhance extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name HN Enhance HN Enhance
ID dmnbgmcilgmcmlhgjkociikeihbkbcdp
Official URL https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp
Description An extension that enhances news.ycombinator website.
File Size 74.79 KB
Installation Count 93
Current Version 0.1.0
Last Updated 2019-04-04
Publish Date 2019-04-04
Rating 4.50/5 Total 8 Ratings
Developer Alvaro Bernal G
Email [email protected]
Payment Type free
Extension Website https://alvarobg.com
Supported Languages 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
        }
    ]
}