Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

ما هو Cam Scroller؟

Cam Scroller هو إضافة Chrome تم تطويرها بواسطة jwexler، والميزة الرئيسية لها هي "This extension lets a user scroll webpages using webcam gestures.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Cam Scroller

قم بتنزيل ملفات الامتداد Cam Scroller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Cam Scroller is an open-source Chrome extension that uses your webcam and deeplearn.js to enable scrolling through webpages using custom gestures that you define. 

Check out the code at https://github.com/PAIR-code/cam-scroller

It makes use of the deeplearn.js KNN image classifier. In doing so, your webcam images are processed locally on your machine and at no time is any information collected or sent externally.

This simple Chrome extension is meant to show, through a minimal example, the types of experiences that can be enabled through the use of browser-based machine learning.

This is not an officially supported Google product.                    

معلومات أساسية عن التمديد

الاسم Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
عنوان URL الرسمي https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
الوصف This extension lets a user scroll webpages using webcam gestures.
حجم الملف 172 KB
عدد التثبيتات 44
النسخة الحالية 0.1.2
آخر تحديث 2018-03-29
تاريخ النشر 2018-03-29
تقييم 1.00/5 مجموع تقييمات 1
المطور jwexler
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/PAIR-code/cam-scroller
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cam Scroller",
    "description": "This extension lets a user scroll webpages using webcam gestures.",
    "version": "0.1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ]
}