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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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