Zoomba

Customizable zoom increment.

Zoomba란 무엇입니까?

Zoomba은(는) appdevsw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customizable zoom increment."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Zoomba is an extension, which allows you to set a zoom increment and assign it to different keys or mouse wheel actions.
You can use several keys and wheel combinations to set different zoom steps.                    

확장 프로그램 기본 정보

이름 Zoomba Zoomba
ID oifpkclgpipladdnaioaehmmccmljblh
공식 URL https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh
설명 Customizable zoom increment.
파일 크기 16.34 KB
설치 횟수 1,484
현재 버전 1.2.1
최근 업데이트 2019-09-17
출시 날짜 2019-09-17
평점 4.45/5 총 29 개의 평점
개발자 appdevsw
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/appdevsw/zoomba
도움말 페이지 URL https://github.com/appdevsw/zoomba/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoomba",
    "short_name": "Zoomba",
    "description": "Customizable zoom increment.",
    "version": "1.2.1",
    "author": "[email protected]",
    "browser_action": {
        "default_title": "Zoomba",
        "default_popup": "popup.html"
    },
    "options_page": "popup.html",
    "background": {
        "persistent": false,
        "scripts": [
            "common.js",
            "settings.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "common.js",
                "keyboard.js",
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "128": "loupe128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "permissions": [
        "storage",
        "tabs",
        "management",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}