Evergage Launcher

Evergage Launcher

The extension provides support for launching the Evergage Visual Editor on any domain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Evergage Launcher",
  "manifest_version": 2,
  "version": "3.0.10",
  "description": "The extension provides support for launching the Evergage Visual Editor on any domain.",
  "content_security_policy": "script-src 'self' https://cdn.evergage.com 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "clipboardWrite",
    "webNavigation",
    "privacy"
  ],
  "icons": {
    "16": "static/[email protected]",
    "48": "static/[email protected]",
    "128": "static/[email protected]"
  },
  "background": {
    "scripts": [
      "background.js",
      "hot-reload.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "pageContext.js",
    "debugger.html",
    "static/*.svg"
  ],
  "browser_action": {
    "default_icon": {
      "19": "static/[email protected]",
      "38": "static/[email protected]",
      "128": "static/[email protected]"
    },
    "default_popup": "popup.html"
  }
}