smartZoom

Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.

smartZoom là gì?

smartZoom là một tiện ích mở rộng Chrome được phát triển bởi Aneesh Durg, và tính năng chính của nó là "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Ả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 smartZoom

Tải xuống các tệp mở rộng smartZoom 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

                        Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https. 

You need to allow the webcam to be used on the pages on which you want to use smartZoom. This is a one-time step.                    

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

Tên smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
URL Chính Thức https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Mô tả Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Kích Thước Tệp 20.99 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2016-05-24
Ngày Phát Hành 2016-05-23
Nhà Phát Triển Aneesh Durg
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/aneeshdurg/smartZoom
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartZoom",
    "description": "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.",
    "version": "1.2.2",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "utils.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}