Webvizio

Webvizio

Reduce time on revisions for live websites and apps with a collaborative feedback tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "minimum_chrome_version": "96",
  "name": "Webvizio",
  "description": "Reduce time on revisions for live websites and apps with a collaborative feedback tool.",
  "version": "1.0.1.7",
  "manifest_version": 3,
  "permissions": [
    "cookies",
    "declarativeNetRequestWithHostAccess",
    "webNavigation"
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16c.png",
    "32": "icon32c.png",
    "48": "icon48c.png",
    "128": "icon128c.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "webvizio-app.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "*://*.webvizio.com/*",
        "*://*.webvizio.my/*"
      ],
      "js": [
        "webvizio-connector.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.webvizio.com/*"
    ]
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "background": {
    "service_worker": "bg.js"
  }
}