HN Enhance

An extension that enhances news.ycombinator website.

Wat is HN Enhance?

HN Enhance is een Chrome-extensie ontwikkeld door Alvaro Bernal G, en de belangrijkste functie is "An extension that enhances news.ycombinator website.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie HN Enhance

Download HN Enhance-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HN Enhance HN Enhance
ID dmnbgmcilgmcmlhgjkociikeihbkbcdp
Officiële URL https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp
Beschrijving An extension that enhances news.ycombinator website.
Bestandsgrootte 74.79 KB
Aantal Installaties 93
Huidige Versie 0.1.0
Laatst Bijgewerkt 2019-04-04
Publicatiedatum 2019-04-04
Beoordeling 4.50/5 Totaal 8 Beoordelingen
Ontwikkelaar Alvaro Bernal G
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://alvarobg.com
Ondersteunde Talen 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
        }
    ]
}