Smart zoom

Right-click a column of text so zoom, or tap Shift and click, then press +/-/0 to adjust the font size. Esc unzooms.

Smart zoomคืออะไร?

Smart zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sae Yuki และคุณลักษณะหลักของมันคือ "Right-click a column of text so zoom, or tap Shift and click, then press +/-/0 to adjust the font size. Esc unzooms."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smart zoom

ดาวน์โหลดไฟล์ส่วนขยาย Smart zoom ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Right-click a column of text and pick "Zoom" to make it take up the whole width of the screen.  Esc unzooms. 

Or you can tap Shift then click a column of text to zoom in on it, and/or press +/-/0 to adjust the font size.  If you tap Shift accidentally, cancel zooming by tapping it again (or pressing any other key).

This extension works best for text-heavy sites: news, blogs, and so forth.  It won't zoom all content correctly, and it's disabled for some sites like GMail and Hotmail where it doesn't work.  Like all extensions, it's disabled on this site, too.  And it's experimental: it could cause you problems.

If the keyboard shortcuts interfere with a webpage, you can disable them on a page by pressing ` (the backquote key, underneath Escape on some keyboards).

If you like this extension, take a look at the Readability Redux extension (by different folks), which lets you strip many news/blog sites down to plain text.

Note: This extension was originally published by another author. I loved this extension but it was not maintained any more and it was not worked on recent version of chrome. So I decided to fix it for latest chrome. I really appreciate original authors' efforts.

origin: https://chrome.google.com/webstore/detail/smart-zoom/emfkpabfhchapdbfcmphhcagnkdloanp                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Smart zoom Smart zoom
ID ppinmodbpljedinjhhpabjcbgkfmkmak
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smart-zoom/ppinmodbpljedinjhhpabjcbgkfmkmak
คำอธิบาย Right-click a column of text so zoom, or tap Shift and click, then press +/-/0 to adjust the font size. Esc unzooms.
ขนาดไฟล์ 29.41 KB
จำนวนการติดตั้ง 1,016
เวอร์ชันปัจจุบัน 0.1.7.2
อัปเดตครั้งล่าสุด 2018-08-30
วันที่เผยแพร่ 2018-08-30
คะแนน 4.54/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา Sae Yuki
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "zoom.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Right-click a column of text so zoom, or tap Shift and click, then press +\/-\/0 to adjust the font size. Esc unzooms.",
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "name": "Smart zoom",
    "permissions": [
        "contextMenus"
    ],
    "version": "0.1.7.2"
}