Cryptovoxel Generator

Cryptovoxel Generator

Cryptovoxel Generator

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "web_accessible_resources": [
    "images/*.png",
    "js/*.js",
    "css/main.css",
    "main.html"
  ],
  "icons": {
    "128": "images/icon_128.png"
  },
  "name": "Cryptovoxel Generator",
  "version": "0.8.4",
  "description": "Cryptovoxel Generator",
  "permissions": [
    "contextMenus",
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/ext/background.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "https://www.cryptovoxels.com/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/ext/content.js"
      ],
      "matches": [
        "https://www.cryptovoxels.com/*"
      ]
    }
  ],
  "browser_action": {}
}