HTML New Tab
Design your own new tab page with HTML, CSS, and JavaScript!
Was ist HTML New Tab?
HTML New Tab ist eine Chrome-Erweiterung, die von Josh Pullen entwickelt wurde, und ihr Hauptmerkmal ist "Design your own new tab page with HTML, CSS, and JavaScript!".
Erweiterungsscreenshots
HTML New Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTML New Tab-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
Are you a web developer looking to build a completely custom new tab page for Chrome? With HTML New Tab page, you can write HTML, CSS, and JavaScript code to create your own completely custom new tab page. Whenever you open a new tab, your custom page will appear.
Grundlegende Informationen zur Erweiterung
Name | HTML New Tab |
ID | ponjalfncfogplhjlmalcbbclbappnaf |
Offizielle URL | https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf |
Beschreibung | Design your own new tab page with HTML, CSS, and JavaScript! |
Dateigröße | 175 KB |
Installationsanzahl | 427 |
Aktuelle Version | 1.1 |
Letztes Update | 2021-01-24 |
Veröffentlichungsdatum | 2020-12-22 |
Bewertung | 4.91/5 Insgesamt 11 Bewertungen |
Entwickler | Josh Pullen |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HTML New Tab", "description": "Design your own new tab page with HTML, CSS, and JavaScript!", "author": "Josh Pullen", "version": "1.1", "icons": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "chrome_url_overrides": { "newtab": "newtab.html" }, "browser_action": { "default_icon": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "options_ui": { "page": "options.html", "open_in_tab": true }, "background": { "scripts": [ "background.js" ], "persistent": false } } |