Zoom Text Only

Zoom text without distorting the images

Zoom Text Only란 무엇입니까?

Zoom Text Only은(는) https://www.lihanli.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Zoom text without distorting the images"입니다.

확장 프로그램 스크린샷

screenshot

Zoom Text Only 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}