ひよこフィルター

ひよこフィルター

苦手な言葉をひよこにして、穏やかにします

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ひよこフィルター",
  "version": "0.2.6",
  "manifest_version": 3,
  "description": "苦手な言葉をひよこにして、穏やかにします",
  "background": {
    "service_worker": "bg-loader.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/style.min.css"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/util.js",
        "js/model.js",
        "js/tooltip.js",
        "js/validator.js",
        "js/main.js",
        "js/area.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "24": "img/icon24.png",
      "32": "img/icon32.png"
    },
    "default_popup": "html/index.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}