Minimal New Page
Override the new tab page with a minimal clock
Co je Minimal New Page?
Minimal New Page je rozšíření Chrome vyvinuté Manu, a jeho hlavní funkcí je „Override the new tab page with a minimal clock“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Minimal New Page
Stáhněte si soubory rozšíření Minimal New Page ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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]
Základní Informace o Rozšíření
Název | Minimal New Page |
ID | danoojfpckpaacgbaebfakjeepeenaop |
Oficiální URL | https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop |
Popis | Override the new tab page with a minimal clock |
Velikost souboru | 17.23 KB |
Počet instalací | 771 |
Aktuální Verze | 0.2 |
Poslední Aktualizace | 2017-08-01 |
Datum Vydání | 2017-07-31 |
Hodnocení | 4.89/5 Celkem 18 Hodnocení |
Vývojář | Manu |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |