Minimal New Page
Override the new tab page with a minimal clock
Minimal New Pageคืออะไร?
Minimal New Page เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Manu และคุณลักษณะหลักของมันคือ "Override the new tab page with a minimal clock"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Minimal New Page
ดาวน์โหลดไฟล์ส่วนขยาย 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]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Minimal New Page |
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 } |