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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
} | |