Zoom Text Only

Zoom text without distorting the images

Zoom Text Onlyคืออะไร?

Zoom Text Only เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.lihanli.com และคุณลักษณะหลักของมันคือ "Zoom text without distorting the images"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zoom Text Only

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

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

                        The only text zoom extension that works!!
Saves your zoom setting for each domain.
Leave a ★★★★★ review with feature request.

Default Keyboard Shortcuts:
Zoom in: Alt + =
Zoom out: Alt + -
Reset Zoom: Alt + 0

Known bugs:
- There is a small delay from when the page loads to when it gets zoomed. Only way to fix this is for chrome devs to implement this functionality natively.

- Some pages which use a lot of javascript to render parts of the page don't get the zoom applied (i.e. twitter.com)

- The extension does not come with any sounds. If you hear sounds when changing the zoom level those are due to the system sound scheme. This video has information on how to turn it off.
http://www.youtube.com/watch?v=IjkhwL3X0yU

Source code:
https://github.com/lihanli/chrome-text-only-zoom                    

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

ชื่อ Zoom Text Only Zoom Text Only
ID jamhfhbppcmkgghlkeieococonlbppjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zoom-text-only/jamhfhbppcmkgghlkeieococonlbppjg
คำอธิบาย Zoom text without distorting the images
ขนาดไฟล์ 1.78 MB
จำนวนการติดตั้ง 15,401
เวอร์ชันปัจจุบัน 1.5.3
อัปเดตครั้งล่าสุด 2021-04-28
วันที่เผยแพร่ 2016-05-05
คะแนน 3.96/5 รวมทั้งหมด 164 คะแนน
ผู้พัฒนา https://www.lihanli.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zoom Text Only",
    "version": "1.5.3",
    "description": "Zoom text without distorting the images",
    "options_page": "lib\/options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "lib\/util.js",
            "lib\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "lib\/zoom.css"
            ],
            "js": [
                "bower_components\/alertify.js\/dist\/js\/alertify.js",
                "bower_components\/mousetrap\/mousetrap.js",
                "lib\/util.js",
                "lib\/zoom.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Zoom Text Only",
        "default_icon": "icon.png",
        "default_popup": "lib\/popup.html"
    },
    "manifest_version": 2
}