Zoom Block

Disable zooming by default. Re-enable zooming on a per-tab basis by clicking the Zoom Block icon.

Zoom Block란 무엇입니까?

Zoom Block은(는) Wesley Warnell에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disable zooming by default. Re-enable zooming on a per-tab basis by clicking the Zoom Block icon."입니다.

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

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

확장 프로그램 사용 설명서

                        Zoom Block disables zooming in Chrome by default preventing unwanted or accidental zooming. Zooming can be re-enable on a per-tab basis by clicking the Zoom Block icon.

FAQ:

Q: What permissions does Zoom Block require?
A: Zoom Block does not require any permissions. Through careful handling of errors, Zoom Block is able to operate without access to any sensitive information.

Q: Does Zoom Block use analytics?
A: No. Zoom Block respects its users' privacy. No network requests of any kind are ever made.

Q: Can Zoom Block "lock" a custom zoom level?
A: The browser extension API does not offer an elegant way to accomplish this. The best option is to change the browser's default zoom level. Chrome's default zoom settings can be found in Settings -> Appearance -> Page Zoom. Zoom Block will then prevent modifications to the set level.

Q: Why does Zoom Block's icon sometimes turn gray?
A: Some browsers do not allow extensions to modify certain pages (typically internal or settings pages). Zoom Block is therefore unable to prevent zooming on those pages, and the icon will turn gray to indicate such a situation.

Q: I found a bug! Where can I submit a report?
A: Please open an issue on GitHub (https://github.com/warnellw/Zoom-Block/issues) with a detailed description. Pull requests welcome!

License:

Zoom Block is licensed under GPLv3. The source code can be found here: https://github.com/warnellw/Zoom-Block                    

확장 프로그램 기본 정보

이름 Zoom Block Zoom Block
ID jmomepcgehgfoimapeoinphcloinjfpb
공식 URL https://chromewebstore.google.com/detail/zoom-block/jmomepcgehgfoimapeoinphcloinjfpb
설명 Disable zooming by default. Re-enable zooming on a per-tab basis by clicking the Zoom Block icon.
파일 크기 36.17 KB
설치 횟수 9,642
현재 버전 1.1.1
최근 업데이트 2018-07-11
출시 날짜 2018-07-10
평점 4.30/5 총 46 개의 평점
개발자 Wesley Warnell
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/warnellw/Zoom-Block
도움말 페이지 URL https://github.com/warnellw/Zoom-Block/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Wesley Warnell",
    "name": "Zoom Block",
    "version": "1.1.1",
    "description": "Disable zooming by default. Re-enable zooming on a per-tab basis by clicking the Zoom Block icon.",
    "homepage_url": "https:\/\/github.com\/warnellw\/Zoom-Block",
    "icons": {
        "16": "icons\/red16.png",
        "48": "icons\/red48.png",
        "128": "icons\/red128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/red16.png",
            "24": "icons\/red24.png",
            "32": "icons\/red32.png"
        },
        "default_title": "Zoom Block"
    },
    "background": {
        "scripts": [
            "ZoomBlock.js"
        ],
        "persistent": true
    }
}