Examine source code of LUA Web IDE

Inspect and view changes in LUA Web IDE source codes across current and past versions
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": "LUA Web IDE",
  "short_name": "LUA IDE",
  "description": "A Code Editor for LUA on ESP8266",
  "version": "0.1.7",
  "app": {
    "background": {
      "scripts": [
        "js/background.js"
      ]
    }
  },
  "icons": {
    "128": "img/icon_128.png",
    "256": "img/icon_256.png",
    "512": "img/icon_512.png"
  },
  "permissions": [
    "serial",
    "videoCapture",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "storage",
    "http://*/",
    "https://*/"
  ],
  "manifest_version": 2
}