AppMint Lite: HTML5/jQuery Mobile App Builder

AppMint Lite: HTML5/jQuery Mobile App Builder

Drag-and-drop to quickly prototype your mobile app User Interface. Export the generated HTML/CSS/JS. It's that simple!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AppMint Lite: HTML5/jQuery Mobile App Builder",
  "version": "1.4.1",
  "manifest_version": 2,
  "minimum_chrome_version": "20",
  "description": "Drag-and-drop to quickly prototype your mobile app User Interface. Export the generated HTML/CSS/JS. It's that simple!",
  "icons": {
    "16": "src/assets/appmint-16.png",
    "48": "src/assets/appmint-48.png",
    "128": "src/assets/appmint-128.png"
  },
  "offline_enabled": true,
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "src/assets/appmint-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*"
      ],
      "css": [
        "src/css/Appmint.css",
        "src/css/composer.css"
      ],
      "js": [
        "src/js/Appmint.js",
        "src/js/composer.js",
        "src/js/devices.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "cookies",
    "tabs",
    "unlimitedStorage",
    "storage"
  ]
}