HTML New Tab
Design your own new tab page with HTML, CSS, and JavaScript!
Qu'est-ce que HTML New Tab ?
HTML New Tab est une extension Chrome développée par Josh Pullen, et sa fonction principale est "Design your own new tab page with HTML, CSS, and JavaScript!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HTML New Tab
Téléchargez les fichiers d'extension HTML New Tab 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
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.
Informations de Base sur l'Extension
Nom | HTML New Tab |
ID | ponjalfncfogplhjlmalcbbclbappnaf |
URL Officiel | https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf |
Description | Design your own new tab page with HTML, CSS, and JavaScript! |
Taille du Fichier | 175 KB |
Nombre d'Installations | 427 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2021-01-24 |
Date de Publication | 2020-12-22 |
Évaluation | 4.91/5 Total 11 Évaluations |
Développeur | Josh Pullen |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |