Zoomify
Load web pages at 100% zoom level for better experience.
ما هو Zoomify؟
Zoomify هو إضافة Chrome تم تطويرها بواسطة Rishabh Goel، والميزة الرئيسية لها هي "Load web pages at 100% zoom level for better experience.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Zoomify
قم بتنزيل ملفات الامتداد Zoomify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Load web pages at 100% zoom level for a particular domain. For users of the domain, application would be loaded at 100% zoom level resulting in better customer experience.
معلومات أساسية عن التمديد
الاسم | Zoomify |
ID | elhgfighbokpcknobggmegijnpnefldk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk |
الوصف | Load web pages at 100% zoom level for better experience. |
حجم الملف | 4.41 KB |
عدد التثبيتات | 126 |
النسخة الحالية | 1.4 |
آخر تحديث | 2020-11-25 |
تاريخ النشر | 2020-10-28 |
المطور | Rishabh Goel |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zoomify", "version": "1.4", "description": "Load web pages at 100% zoom level for better experience.", "externally_connectable": { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ], "js": [ "prezoomify.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.hex.a2z.com\/board\/*" ], "js": [ "postzoomify.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |