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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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