BlocklyDuino Editor

BlocklyDuino Editor

The editor can be programmed to Arduino by combining blocks as Scratch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "ja",
  "author": "@okhiroyuki",
  "version": "1.7.0",
  "manifest_version": 2,
  "minimum_chrome_version": "33",
  "offline_enabled": true,
  "icons": {
    "128": "media/icon_128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "externally_connectable": {
    "matches": [
      "*://okhiroyuki.github.io/*",
      "*://*.makewitharduino.com/*"
    ]
  },
  "permissions": [
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "storage",
    "https://raw.githubusercontent.com/makewitharduino/*",
    "alarms"
  ],
  "file_handlers": {
    "text": {
      "types": [
        "text/*"
      ]
    }
  }
}