Minimal New Page
Override the new tab page with a minimal clock
什么是Minimal New Page?
Minimal New Page是由Manu开发的Chrome扩展程序,该扩展的主要功能是“Override the new tab page with a minimal clock”。
扩展截图
下载Minimal New Page扩展crx文件
下载Minimal New Page扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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] 扩展基本信息
| 名称 | |
| ID | danoojfpckpaacgbaebfakjeepeenaop |
| 官方URL | https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop |
| 简介 | Override the new tab page with a minimal clock |
| 文件大小 | 17.23 KB |
| 安装次数 | 771 |
| 当前版本 | 0.2 |
| 更新时间 | 2017-08-01 |
| 上架时间 | 2017-07-31 |
| 评分 | 4.89/5 共18次评分 |
| 开发者 | Manu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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
} | |