Zoomify

Load web pages at 100% zoom level for better experience.

Zoomify란 무엇입니까?

Zoomify은(는) Rishabh Goel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load web pages at 100% zoom level for better experience."입니다.

확장 프로그램 스크린샷

screenshot

Zoomify 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Load web pages at 100% zoom level for a particular domain. For users of the domain, application would be loaded at 100% zoom level resulting in better customer experience.                    

확장 프로그램 기본 정보

이름 Zoomify Zoomify
ID elhgfighbokpcknobggmegijnpnefldk
공식 URL https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk
설명 Load web pages at 100% zoom level for better experience.
파일 크기 4.41 KB
설치 횟수 126
현재 버전 1.4
최근 업데이트 2020-11-25
출시 날짜 2020-10-28
개발자 Rishabh Goel
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoomify",
    "version": "1.4",
    "description": "Load web pages at 100% zoom level for better experience.",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.hex.a2z.com\/board\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hex.a2z.com\/board\/*"
            ],
            "js": [
                "prezoomify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.hex.a2z.com\/board\/*"
            ],
            "js": [
                "postzoomify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}