Hacker Tab (unofficial)
Replace browser new tab screen with GitHub trending projects.
Was ist Hacker Tab (unofficial)?
Hacker Tab (unofficial) ist eine Chrome-Erweiterung, die von rainchai4240 entwickelt wurde, und ihr Hauptmerkmal ist "Replace browser new tab screen with GitHub trending projects.".
Erweiterungsscreenshots
Hacker Tab (unofficial)-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hacker Tab (unofficial)-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
My personal version of hackertab, as the official hackertab extension is down, hence I decided to self-host a version of mine, all credits go to https://github.com/huchenme/hacker-tab-extension, I did not wrote any line of code Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fjjkhllolplhgmoepkjjlbmpgfhpmbob |
| Offizielle URL | https://chrome.google.com/webstore/detail/hacker-tab-unofficial/fjjkhllolplhgmoepkjjlbmpgfhpmbob |
| Beschreibung | Replace browser new tab screen with GitHub trending projects. |
| Dateigröße | 2.33 MB |
| Installationsanzahl | 55 |
| Aktuelle Version | 1.10.0 |
| Letztes Update | 2020-10-22 |
| Veröffentlichungsdatum | 2020-10-22 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | rainchai4240 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/huchenme/hacker-tab-extension |
| Hilfeseite URL | https://github.com/huchenme/hacker-tab-extension |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hacker Tab (unofficial)",
"author": "Hu Chen",
"version": "1.10.0",
"description": "Replace browser new tab screen with GitHub trending projects.",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage",
"alarms"
]
} | |