HeartbeatRM Proxy

HeartbeatRM Proxy

Proxy web requests through remote HeartbeatRM Agents.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HeartbeatRM Proxy",
  "version": "1.0.13",
  "description": "Proxy web requests through remote HeartbeatRM Agents.",
  "homepage_url": "https://heartbeatrm.com",
  "icons": {
    "16": "assets/main.png",
    "128": "assets/main.png"
  },
  "permissions": [
    "proxy",
    "<all_urls>",
    "notifications",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": "assets/disconnected.png",
    "default_title": "HeartbeatRM Agent Proxy",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.heartbeatrm.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}