Reflect Feedback Consolidator

Reflect Feedback Consolidator

Consolidate feedback shared on Reflect tool. Enabled on https://reflect.fkinternal.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reflect Feedback Consolidator",
  "version": "1.0",
  "description": "Consolidate feedback shared on Reflect tool. Enabled on https://reflect.fkinternal.com.",
  "permissions": [
    "tabs",
    "webNavigation",
    "https://reflect.fkinternal.com/*"
  ],
  "author": "[email protected]",
  "background": {
    "scripts": [
      "js/backgroundScript.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://reflect.fkinternal.com/*"
      ],
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/html2pdf.js",
        "js/utils.js",
        "js/config.js",
        "js/contentScript.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://reflect.fkinternal.com; object-src 'self'"
}