Taskmonk iFrame Enabler

Taskmonk iFrame Enabler

This plugin enables the loading of any website in an iframe on the Taskmonk application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Taskmonk iFrame Enabler",
  "description": "This plugin enables the loading of any website in an iframe on the Taskmonk application",
  "version": "2.1.0",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "removeHeader",
        "enabled": false,
        "path": "removeHeader.json"
      }
    ]
  }
}