jsPsychHardware

jsPsychHardware

Allows browsers to access COM and LPT port hardware

Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "detectjspsych.js"
      ]
    }
  ]
}