MPageFusion

MPageFusion

Developer tool for MPageFusion project

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MPageFusion",
  "description": "Developer tool for MPageFusion project",
  "version": "0.0.6",
  "icons": {
    "128": "logo.png"
  },
  "permissions": [
    "file:///*",
    "http://*/*",
    "https://*/*"
  ],
  "devtools_page": "devtool/devtools.html",
  "content_scripts": [
    {
      "js": [
        "contentScript/contentScript.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  },
  "minimum_chrome_version": "50",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "contentScript/backend/backend.js"
  ]
}