Zen Reading
Provide a nice and clean reading experience for any web article.
ما هو Zen Reading؟
Zen Reading هو إضافة Chrome تم تطويرها بواسطة https://www.nclsmitchell.com، والميزة الرئيسية لها هي "Provide a nice and clean reading experience for any web article.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Zen Reading
قم بتنزيل ملفات الامتداد Zen Reading بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
New features coming soon.
Latest update:
- Adding the possibility to swtich on/off without page reload
- New active icon معلومات أساسية عن التمديد
| الاسم | |
| ID | jbijaekkhbdedopipdoepignpolobenj |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/zen-reading/jbijaekkhbdedopipdoepignpolobenj |
| الوصف | Provide a nice and clean reading experience for any web article. |
| حجم الملف | 38.48 KB |
| عدد التثبيتات | 25 |
| النسخة الحالية | 1.1.6 |
| آخر تحديث | 2015-10-29 |
| تاريخ النشر | 2015-10-29 |
| تقييم | 2.00/5 مجموع تقييمات 2 |
| المطور | https://www.nclsmitchell.com |
| نوع الدفع | free |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zen Reading",
"description": "Provide a nice and clean reading experience for any web article.",
"version": "1.1.6",
"browser_action": {
"default_icon": "icon-zen-reading.png",
"name": "Click to Zen Mode"
},
"background": {
"scripts": [
"zen-reading-background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"zen-reading.css"
],
"js": [
"jquery.min.js"
]
}
],
"permissions": [
"activeTab"
]
} | |