Auto Zoom
This extension automatically zooms in a page with a small font for Chrome users.
ما هو Auto Zoom؟
Auto Zoom هو إضافة Chrome تم تطويرها بواسطة AM، والميزة الرئيسية لها هي "This extension automatically zooms in a page with a small font for Chrome users.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Zoom
قم بتنزيل ملفات الامتداد Auto Zoom بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Auto Zoom extension provides automatic zoom capability for Chrome users. It is designed to help you keep the page text readable when opening websites with a less than optimal font size. When active, the extension scans through the page to find a predominant text font size and adjusts the opened page zoom factor for this text to be at least 15 pixels tall.
معلومات أساسية عن التمديد
الاسم | Auto Zoom |
ID | dcicehbfkfjclggmmgpknoolmfagepph |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph |
الوصف | This extension automatically zooms in a page with a small font for Chrome users. |
حجم الملف | 60.89 KB |
عدد التثبيتات | 571 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2016-07-06 |
تاريخ النشر | 2016-07-06 |
تقييم | 4.00/5 مجموع تقييمات 3 |
المطور | AM |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Zoom", "description": "This extension automatically zooms in a page with a small font for Chrome users.", "version": "1.0.0", "icons": { "128": "icon-128.png" }, "browser_action": { "default_icon": { "38": "icon-active-38.png" } }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "chrome-content-script.bundle.js" ], "run_at": "document_idle", "all_frames": true } ], "background": { "scripts": [ "chrome-background-script.bundle.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |