Qore Plugin

Qore Plugin

In iframe highlight the fields

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "permissions": [
    "declarativeNetRequest"
  ],
  "name": "Qore Plugin",
  "version": "1.94",
  "description": "In iframe highlight the fields",
  "icons": {
    "16": "img/icons16.png",
    "48": "img/icons48.png",
    "128": "img/icons128.png"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "removeHeader",
        "enabled": true,
        "path": "removeHeader.json"
      }
    ]
  }
}