jsPsychHardware

Allows browsers to access COM and LPT port hardware

jsPsychHardwareคืออะไร?

jsPsychHardware เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cogcommtl.ca และคุณลักษณะหลักของมันคือ "Allows browsers to access COM and LPT port hardware"

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

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

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

                        The jsPsych library allows researchers in psychology and any other behavioral sciences to run experiments easily and transparently on the web. Participants now only need an internet connection and a regular browser, the same stuff they use everyday online!

However, it can be useful to compare data gathered through web experiments with physiological data (like EEG, EMG, Eyetracker) that can only be recorded with sophisticated lab equipement.

Rather than wasting time developing the very same experiment both in jsPsych (for the web) and your standard experiment editor (PsychoPy, OpenSesame, E-prime, etc), which runs the risk of introducing confounding differences in the protocols, it would be nice to give jsPsych the power to interface with such equipement. Subjects in the lab would go to the very same URL they would have requested at home, and do the same experiment, only that now, it sends triggers to hardware.

And this extension, coupled with a small program available freely on our lab website, allows just that :)                    

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

ชื่อ jsPsychHardware jsPsychHardware
ID jfodnelopfigofnkclnkeeehjjjlnkan
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jspsychhardware/jfodnelopfigofnkclnkeeehjjjlnkan
คำอธิบาย Allows browsers to access COM and LPT port hardware
ขนาดไฟล์ 282 KB
จำนวนการติดตั้ง 59
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2017-11-22
วันที่เผยแพร่ 2017-11-21
ผู้พัฒนา https://cogcommtl.ca
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.jspsych.org/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "jsPsychHardware",
    "version": "0.5",
    "manifest_version": 2,
    "description": "Allows browsers to access COM and LPT port hardware",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab",
        "nativeMessaging",
        "storage"
    ],
    "page_action": {
        "default_title": "",
        "default_popup": "popup.html",
        "default_icon": "media\/jspsych-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "detectjspsych.js"
            ]
        }
    ]
}