Clay for Chrome

Clay for Chrome

Turn the entire internet into a data source and pull specific data points from any website straight into Clay.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clay for Chrome",
  "short_name": "Clay for Chrome",
  "description": "Turn the entire internet into a data source and pull specific data points from any website straight into Clay.",
  "version": "0.74.1",
  "author": "Clay Labs Inc.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'sha256-DSIsCExSZLkD7zY9je1cC9P/JB4+zj+5XpZal4pMux0='; object-src 'self'; frame-src 'self' https://*.netlify.app https://*.clay.run https://*.clay.com http://localhost:8090; report-uri 'https://o144832.ingest.sentry.io/api/5208547/security/?sentry_key=6ab7e7af908846ed9ea9e5d363869acc&sentry_environment=dev&sentry_release=0.16.1'",
  "content_scripts": [
    {
      "matches": [
        "https://*.clay.run/*"
      ],
      "js": [
        "install-checker.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "assets/img/clay_16px.png",
    "32": "assets/img/clay_32px.png",
    "48": "assets/img/clay_48px.png",
    "128": "assets/img/clay_128px.png"
  },
  "web_accessible_resources": [
    "assets/img/clay_16px.png",
    "assets/font/circularstd-book.otf",
    "assets/img/*.svg",
    "assets/img/*.png",
    "assets/img/loading.webp",
    "popup.html",
    "google-analytics-bundle.js",
    "content.js"
  ],
  "browser_action": {
    "default_icon": "assets/img/clay_16px.png",
    "default_title": "Clay for Chrome"
  },
  "commands": {
    "activate-command-box": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      },
      "description": "Toggle feature foo"
    },
    "_execute_browser_action": {
      "description": "Open Clay extension sidebar"
    }
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "storage",
    "*://*/*",
    "tabs",
    "notifications"
  ],
  "minimum_chrome_version": "76"
}