Minimal New Page
Override the new tab page with a minimal clock
What is Minimal New Page?
Minimal New Page is a Chrome extension developed by Manu, and its main feature is "Override the new tab page with a minimal clock".
Extension Screenshots
Download Minimal New Page Extension CRX File
Download Minimal New Page extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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]
Extension Basic Information
Name | Minimal New Page |
ID | danoojfpckpaacgbaebfakjeepeenaop |
Official URL | https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop |
Description | Override the new tab page with a minimal clock |
File Size | 17.23 KB |
Installation Count | 771 |
Current Version | 0.2 |
Last Updated | 2017-08-01 |
Publish Date | 2017-07-31 |
Rating | 4.89/5 Total 18 Ratings |
Developer | Manu |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |