jsPsychHardware

Allows browsers to access COM and LPT port hardware

什么是jsPsychHardware?

jsPsychHardware是由https://cogcommtl.ca开发的Chrome扩展程序,该扩展的主要功能是“Allows browsers to access COM and LPT port hardware”。

下载jsPsychHardware扩展crx文件

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