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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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'" } |