Hack the News
A Hacker News icon that notifies you when the top story changes.
Was ist Hack the News?
Hack the News ist eine Chrome-Erweiterung, die von github.com/robbiewain entwickelt wurde, und ihr Hauptmerkmal ist "A Hacker News icon that notifies you when the top story changes.".
Erweiterungsscreenshots
Hack the News-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hack the News-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
Displays a Hacker News icon on your browser that changes color when the top story changes.
Source code at https://github.com/robbiewain/hack-the-news Grundlegende Informationen zur Erweiterung
| Name | |
| ID | oehghgdldepmknikdpjakmpbonlkmnfa |
| Offizielle URL | https://chromewebstore.google.com/detail/hack-the-news/oehghgdldepmknikdpjakmpbonlkmnfa |
| Beschreibung | A Hacker News icon that notifies you when the top story changes. |
| Dateigröße | 101 KB |
| Installationsanzahl | 60 |
| Aktuelle Version | 0.1.1 |
| Letztes Update | 2017-12-07 |
| Veröffentlichungsdatum | 2017-12-06 |
| Bewertung | 4.75/5 Insgesamt 4 Bewertungen |
| Entwickler | github.com/robbiewain |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/robbiewain/hack-the-news |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hack the News",
"version": "0.1.1",
"manifest_version": 2,
"description": "A Hacker News icon that notifies you when the top story changes.",
"content_security_policy": "script-src 'self' https:\/\/*.firebaseio.com; object-src 'self'",
"icons": {
"16": "images\/hacker-news-16.png",
"128": "images\/hacker-news-128.png"
},
"background": {
"scripts": [
"app.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "images\/hacker-news-19.png",
"38": "images\/hacker-news-38.png"
},
"default_title": "Hack the News",
"default_popup": "index.html"
},
"permissions": [
"storage"
]
} | |