Xenforo User Tools

Xenforo User Tools

A browser plugin to provide extended features for websites that are running the Xenforo forums software

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.0.1",
  "options_page": "blacklist.html",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_popup": "blacklist.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content-scripts/xenforo-user-tools.css"
      ],
      "js": [
        "js/forum-user-tools/xenforo-user-tools.js",
        "js/content-scripts/jquery-3.4.1.min.js",
        "js/content-scripts/xenforo-user-tools.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/content-scripts/*.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}