Better traQ

Better traQ

An extension that makes traQ useful

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better traQ",
  "version": "3.2.0",
  "action": {
    "default_icon": {
      "16": "16.png",
      "24": "24.png",
      "32": "32.png"
    },
    "default_title": "Better traQ"
  },
  "description": "An extension that makes traQ useful",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://q.trap.jp/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "options_page": "options.html"
}