Minimal New Page
Override the new tab page with a minimal clock
Qu'est-ce que Minimal New Page ?
Minimal New Page est une extension Chrome développée par Manu, et sa fonction principale est "Override the new tab page with a minimal clock".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Minimal New Page
Téléchargez les fichiers d'extension Minimal New Page 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
I was looking for a minimal new tab extension. Found none so I coded one myself. This extension replaces your new tab with a dark page and a clock. No options, no settings. For feedbacks, ideas and insults -> [email protected]
Informations de Base sur l'Extension
Nom | Minimal New Page |
ID | danoojfpckpaacgbaebfakjeepeenaop |
URL Officiel | https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop |
Description | Override the new tab page with a minimal clock |
Taille du Fichier | 17.23 KB |
Nombre d'Installations | 771 |
Version Actuelle | 0.2 |
Dernière Mise à Jour | 2017-08-01 |
Date de Publication | 2017-07-31 |
Évaluation | 4.89/5 Total 18 Évaluations |
Développeur | Manu |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Minimal New Page", "description": "Override the new tab page with a minimal clock", "version": "0.2", "incognito": "split", "chrome_url_overrides": { "newtab": "blank.html" }, "background": { "scripts": [ "assets\/script.js" ], "styles": [ "assets\/styles.css" ], "persistent": false }, "browser_action": { "default_icon": "assets\/icon.png" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "content_security_policy": "script-src 'self'; default-src 'self'", "manifest_version": 2 } |