Page Camera

Page Camera

Capture snapshots of pages to track with Crazy Egg

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Page Camera",
  "short_name": "Page Camera",
  "description": "Capture snapshots of pages to track with Crazy Egg",
  "version": "2.1.19",
  "minimum_chrome_version": "110",
  "incognito": "split",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": "icons/48.png",
    "default_popup": "common/panel.html"
  },
  "permissions": [
    "activeTab",
    "debugger",
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "homepage_url": "http://www.crazyegg.com/",
  "web_accessible_resources": [
    {
      "resources": [
        "fingerprint/*.js",
        "common/overflow_fix.js",
        "common/sticky_fixer.js",
        "source_page.js",
        "hide_scrollbars.css",
        "page_scroller.js",
        "conversation.js",
        "keep_alive_page.js",
        "config.js",
        "honeybadger.min.js",
        "tabs.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "common/recapture_page.*",
        "api.js",
        "recapture_page.js"
      ],
      "matches": [
        "*://*.crazyegg.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.crazyegg.com/*"
      ],
      "js": [
        "home.js"
      ],
      "run_at": "document_start"
    }
  ]
}