Doc Scratch Readability Improver
Makes Doc Scratch's text more easily readable
ما هو Doc Scratch Readability Improver؟
Doc Scratch Readability Improver هو إضافة Chrome تم تطويرها بواسطة murgatroid99، والميزة الرئيسية لها هي "Makes Doc Scratch's text more easily readable".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Doc Scratch Readability Improver
قم بتنزيل ملفات الامتداد Doc Scratch Readability Improver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension makes Doc Scratch's text easier to read by highlighting it in green when you hover over it.
معلومات أساسية عن التمديد
الاسم | |
ID | nhbajdgedgakiagjblnoiidphblfgigl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/doc-scratch-readability-i/nhbajdgedgakiagjblnoiidphblfgigl |
الوصف | Makes Doc Scratch's text more easily readable |
حجم الملف | 9.31 KB |
عدد التثبيتات | 150 |
النسخة الحالية | 0.2.0 |
آخر تحديث | 2013-08-11 |
تاريخ النشر | 2013-08-11 |
تقييم | 4.00/5 مجموع تقييمات 4 |
المطور | murgatroid99 |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Doc Scratch Readability Improver", "version": "0.2.0", "manifest_version": 2, "description": "Makes Doc Scratch's text more easily readable", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.mspaintadventures.com\/*" ], "js": [ "js\/content_script.js" ] } ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "Doc Scratch Readability improved" }, "permissions": [ "*:\/\/*.mspaintadventures.net\/*", "webNavigation", "tabs" ] } |