Do Draw

A little drawing app that teaches you how to program. Drag blocks together to create drawing rules and watch your images come alive!
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": "Do Draw",
  "description": "A little drawing app that teaches you how to program. Drag blocks together to create drawing rules and watch your images come alive!",
  "version": "0.1",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "icons": {
    "16": "assets/icons/icon-16.png",
    "128": "assets/icons/icon-128.png"
  },
  "sandbox": {
    "pages": [
      "canvas.window.html"
    ]
  },
  "permissions": [
    "storage"
  ]
}