Zoomba

Customizable zoom increment.

什麼是Zoomba?

Zoomba是由appdevsw開發的Chrome擴展程式,該擴展的主要功能是“Customizable zoom increment.”。

擴展截圖

screenshot

下載Zoomba擴展crx文件

下載Zoomba擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
    ]
}