HN Enhance
An extension that enhances news.ycombinator website.
Qu'est-ce que HN Enhance ?
HN Enhance est une extension Chrome développée par Alvaro Bernal G, et sa fonction principale est "An extension that enhances news.ycombinator website.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HN Enhance
Téléchargez les fichiers d'extension HN Enhance au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | HN Enhance |
ID | dmnbgmcilgmcmlhgjkociikeihbkbcdp |
URL Officiel | https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp |
Description | An extension that enhances news.ycombinator website. |
Taille du Fichier | 74.79 KB |
Nombre d'Installations | 93 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2019-04-04 |
Date de Publication | 2019-04-04 |
Évaluation | 4.50/5 Total 8 Évaluations |
Développeur | Alvaro Bernal G |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://alvarobg.com |
Langues Prises en Charge | 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 } ] } |