</dat@.in.the.raw> Heatmap

</[email protected]> Heatmap

The purpose of the extension will be to let companies easily make better real-time decisions based on data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "</[email protected]> Heatmap",
  "version": "2.0.14",
  "manifest_version": 2,
  "description": "The purpose of the extension will be to let companies easily make better real-time decisions based on data.",
  "short_name": "</[email protected]>",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16x16.png",
      "19": "icons/icon19x19.png",
      "32": "icons/icon32x32.png",
      "48": "icons/icon48x48.png",
      "128": "icons/icon128x128.png"
    }
  },
  "icons": {
    "16": "icons/icon16x16.png",
    "19": "icons/icon19x19.png",
    "32": "icons/icon32x32.png",
    "48": "icons/icon48x48.png",
    "128": "icons/icon128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": false,
      "js": [
        "contentscript.js",
        "heatmap.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "refresh_heatmap": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "MacCtrl+Q"
      },
      "description": "Refresh Heatmap (Ctrl+Q)"
    }
  },
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "debugger",
    "browsingData"
  ]
}