Web Data Assistant

Web Data Assistant

Web Data Assistant allows to control custom data from a Web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Web Data Assistant",
  "short_name": "Web Data Assistant",
  "description": "Web Data Assistant allows to control custom data from a Web page.",
  "author": "[email protected]",
  "version": "2.0",
  "icons": {
    "48": "files/img/icon48.png",
    "128": "files/img/icon128.png"
  },
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "storage",
    "notifications",
    "webRequest",
    "alarms"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "action": {
    "default_icon": "files/img/icon48.png"
  },
  "background": {
    "service_worker": "files/js/background.js"
  },
  "options_page": "options.html"
}