Smart scrolling

Scroll any pages without using your hand!

ما هو Smart scrolling؟

Smart scrolling هو إضافة Chrome تم تطويرها بواسطة jane.hikaru، والميزة الرئيسية لها هي "Scroll any pages without using your hand!".

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

screenshot

تحميل ملف CRX للإضافة Smart scrolling

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

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

                        Scroll up or down with your head, 

-might not work in some page 
-require webcam camera
-require camera access permission (you need to click 'allow' to start this function)

Based on course project, detail can be found here http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html

libraries used here:
-http://trackingjs.com/
-https://code.google.com/p/dat-gui/                    

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

الاسم Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
عنوان URL الرسمي https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
الوصف Scroll any pages without using your hand!
حجم الملف 374 KB
عدد التثبيتات 40
النسخة الحالية 0.11
آخر تحديث 2014-12-12
تاريخ النشر 2014-12-12
تقييم 1.88/5 مجموع تقييمات 8
المطور jane.hikaru
نوع الدفع free
موقع الإضافة http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart scrolling",
    "description": "Scroll any pages without using your hand!",
    "version": "0.11",
    "permissions": [
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "gaze_tracking.js",
                "tracking.js",
                "face-min.js",
                "dat.gui.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}