Contentsquare - Looker Studio Helper

Contentsquare - Looker Studio Helper

This extension is required to use the Looker Studio Contentsquare connector.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Contentsquare - Looker Studio Helper",
  "short_name": "CS - GDS",
  "description": "This extension is required to use the Looker Studio Contentsquare connector.",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/icon_16.png",
      "24": "icons/icon_24.png",
      "32": "icons/icon_32.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://datastudio.google.com/*",
        "https://lookerstudio.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://datastudio.google.com/*",
    "*://lookerstudio.google.com/*"
  ],
  "version": "1.7.0"
}