CraftyZoom

CraftyZoom

CraftyZoom là gì?

CraftyZoom là một tiện ích mở rộng Chrome được phát triển bởi https://crafty184.com, và tính năng chính của nó là "CraftyZoom".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CraftyZoom

Tải xuống các tệp mở rộng CraftyZoom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        **UPDATED: Added a Start button to begin zooming, press Escape to end**

CraftyZoom allows you to magnify a portion of the screen! Simply click the CZ icon to set the size of your magnifying glass as well as the degree of magnification, then use either CMD-SHIFT-Z or CTRL-SHIFT-Z to enable and disable. 

Note: You cannot scroll down while CraftyZoom is enabled, so if you need to magnify something lower on the screen, simply disable CZ, scroll down, and enable it again.

CraftyZoom is proudly powered by EdTechTeam.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CraftyZoom CraftyZoom
ID ibhegccigccbgpjjmkofhobdnhpinacb
URL Chính Thức https://chromewebstore.google.com/detail/craftyzoom/ibhegccigccbgpjjmkofhobdnhpinacb
Mô tả CraftyZoom
Kích Thước Tệp 75.43 KB
Số Lần Cài Đặt 4,345
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-02-28
Ngày Phát Hành 2016-11-12
Đánh Giá 2.10/5 Tổng số 10 Đánh Giá
Nhà Phát Triển https://crafty184.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CraftyZoom",
    "description": "CraftyZoom",
    "version": "1.2",
    "action": {
        "default_icon": "images\/19disabled.png",
        "default_popup": "popup.html",
        "default_title": "CraftyZoom"
    },
    "icons": {
        "16": "images\/19.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/cs_styles.css",
                "css\/evenZoom.css"
            ],
            "js": [
                "libs\/jquery-1.12.0.min.js",
                "libs\/evenZoom.js",
                "scripts\/actions.js",
                "scripts\/tools.js",
                "scripts\/cs_screenCapture.js",
                "scripts\/cs_bootstrap.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "bs_main.js"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/cs_styles.css",
                "css\/evenZoom.css",
                "css\/rangeSlider.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "toggleCrafyZoom": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "Toggle CraftyZoom extension"
        }
    }
}