Google Optimize

Google Optimize

Facilitates editing content with Google Optimize.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Optimize",
  "default_locale": "en",
  "version": "0.44.3",
  "description": "__MSG_ext_description__",
  "permissions": [
    "storage",
    "debugger",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "16": "ga_optimizer_16.png",
    "48": "ga_optimizer_48.png",
    "128": "ga_optimizer_128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://optimize.google.com/optimize/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "inactive_16.png",
      "32": "inactive_32.png"
    },
    "default_title": "Google Optimize",
    "default_popup": "popup.html"
  }
}