BlocklyDuino Editor

The editor can be programmed to Arduino by combining blocks as Scratch.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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/*"
      ]
    }
  }
}