Minimal New Page
Override the new tab page with a minimal clock
Minimal New Page là gì?
Minimal New Page là một tiện ích mở rộng Chrome được phát triển bởi Manu, và tính năng chính của nó là "Override the new tab page with a minimal clock".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Minimal New Page
Tải xuống các tệp mở rộng Minimal New Page dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Minimal New Page |
ID | danoojfpckpaacgbaebfakjeepeenaop |
URL Chính Thức | https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop |
Mô tả | Override the new tab page with a minimal clock |
Kích Thước Tệp | 17.23 KB |
Số Lần Cài Đặt | 771 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2017-08-01 |
Ngày Phát Hành | 2017-07-31 |
Đánh Giá | 4.89/5 Tổng số 18 Đánh Giá |
Nhà Phát Triển | Manu |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |