smartZoom

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

smartZoomคืออะไร?

smartZoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aneesh Durg และคุณลักษณะหลักของมันคือ "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย smartZoom

ดาวน์โหลดไฟล์ส่วนขยาย smartZoom ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
คำอธิบาย Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
ขนาดไฟล์ 20.99 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2016-05-24
วันที่เผยแพร่ 2016-05-23
ผู้พัฒนา Aneesh Durg
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/aneeshdurg/smartZoom
ภาษาที่รองรับ 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"
    }
}