ZoomR
Zoom in on articles.
ZoomRคืออะไร?
ZoomR เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Altmayer และคุณลักษณะหลักของมันคือ "Zoom in on articles."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ZoomR
ดาวน์โหลดไฟล์ส่วนขยาย ZoomR ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ZoomR enables you to zoom in on columns on websites. Simply right-click on the column (for example, on a news article) and click "Zoom Here". To zoom out, you can right-click again and click "Unzoom". Technical: Essentially, this just calculates the zoom required to make the HTML element that was right-clicked be the full width of the screen (-10% so nothing gets cut off). This requires Chrome version 39 (current dev channel).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | jgmpfcpmgehgmeodlemlnnbpcdokboca |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca |
คำอธิบาย | Zoom in on articles. |
ขนาดไฟล์ | 4.1 KB |
จำนวนการติดตั้ง | 82 |
เวอร์ชันปัจจุบัน | 0.1.5 |
อัปเดตครั้งล่าสุด | 2014-09-19 |
วันที่เผยแพร่ | 2014-09-19 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | David Altmayer |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/dhaltmayer/ZoomR |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ZoomR", "version": "0.1.5", "author": "David H. Altmayer", "minimum_chrome_version": "39", "description": "Zoom in on articles.", "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "contextMenus" ] } |