OhBridge

OhBridge

Bridge from Ohbot and Picoh to Web programming platforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OhBridge",
  "version": "0.0.25",
  "description": "Bridge from Ohbot and Picoh to Web programming platforms.",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "./popup.html",
    "default_title": "Open the popup",
    "default_icon": "./icon.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "https://www.scratch.ohbot.co.uk/*",
        "http://localhost:8601/*",
        "https://*.scratch.ohbot.co.uk/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://www.scratch.ohbot.co.uk/*",
      "http://localhost:8601/*",
      "https://*.scratch.ohbot.co.uk/*"
    ]
  },
  "web_accessible_resources": [
    "MotorDefinitionsPicoh.omd",
    "MotorDefinitionsv21.omd",
    "ohbot.obe"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}