Orbis Eye

Orbis Eye

Displays a live network of Third Party sites connected to the current browser session

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Orbis Eye ",
  "description": "Displays a live network of Third Party sites connected to the current browser session",
  "version": "1.0.1",
  "permissions": [
    "tabs",
    "debugger",
    "cookies"
  ],
  "background": {
    "scripts": [
      "background.js",
      "vis.js"
    ],
    "matches": [
      "dist/js/*.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "vis.js"
      ],
      "matches": [
        "https://www.google.com/",
        "http://www.google.com/"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Orbis Eye"
  },
  "content_security_policy": "script-src 'self' 'sha256-LNK0taLWDFGvKKmnlqonP+rax3TC/nAnWa31WJaCZV8=' 'unsafe-inline'",
  "manifest_version": 2
}