jsPsychHardware

Allows browsers to access COM and LPT port hardware

Wat is jsPsychHardware?

jsPsychHardware is een Chrome-extensie ontwikkeld door https://cogcommtl.ca, en de belangrijkste functie is "Allows browsers to access COM and LPT port hardware".

Download het CRX-bestand van de extensie jsPsychHardware

Download jsPsychHardware-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 :)                    

Basisinformatie over de Extensie

Naam jsPsychHardware jsPsychHardware
ID jfodnelopfigofnkclnkeeehjjjlnkan
Officiële URL https://chromewebstore.google.com/detail/jspsychhardware/jfodnelopfigofnkclnkeeehjjjlnkan
Beschrijving Allows browsers to access COM and LPT port hardware
Bestandsgrootte 282 KB
Aantal Installaties 59
Huidige Versie 0.5
Laatst Bijgewerkt 2017-11-22
Publicatiedatum 2017-11-21
Ontwikkelaar https://cogcommtl.ca
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.jspsych.org/
Ondersteunde Talen 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"
            ]
        }
    ]
}