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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}