Examine source code of mki3d

Inspect and view changes in mki3d 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",
  "manifest_version": 2,
  "name": "mki3d",
  "short_name": "MKI 3D",
  "description": "Designing simple 3D objects and exporting them to HTML",
  "version": "0.47",
  "minimum_chrome_version": "38",
  "author": "Marcin Kik mki1967@gmail.com",
  "offline_enabled": true,
  "icons": {
    "16": "assets/mki_icon_16.png",
    "48": "assets/mki_icon_48.png",
    "128": "assets/mki_icon_128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "requirements": {
    "3D": {
      "features": [
        "webgl"
      ]
    }
  },
  "permissions": [
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "storage"
  ],
  "file_handlers": {
    "text": {
      "types": [
        "text/*"
      ]
    }
  }
}