HN Enhance
An extension that enhances news.ycombinator website.
Was ist HN Enhance?
HN Enhance ist eine Chrome-Erweiterung, die von Alvaro Bernal G entwickelt wurde, und ihr Hauptmerkmal ist "An extension that enhances news.ycombinator website.".
Erweiterungsscreenshots
HN Enhance-Erweiterungs-CRX-Datei herunterladen
Laden Sie HN Enhance-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dmnbgmcilgmcmlhgjkociikeihbkbcdp |
| Offizielle URL | https://chromewebstore.google.com/detail/hn-enhance/dmnbgmcilgmcmlhgjkociikeihbkbcdp |
| Beschreibung | An extension that enhances news.ycombinator website. |
| Dateigröße | 74.79 KB |
| Installationsanzahl | 93 |
| Aktuelle Version | 0.1.0 |
| Letztes Update | 2019-04-04 |
| Veröffentlichungsdatum | 2019-04-04 |
| Bewertung | 4.50/5 Insgesamt 8 Bewertungen |
| Entwickler | Alvaro Bernal G |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://alvarobg.com |
| Unterstützte Sprachen | 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
}
]
} | |