EmoGuard - Keyword Blocker

EmoGuard - Keyword Blocker

cross-platform 🤝 keyword blocker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_manifestName__",
  "description": "__MSG_manifestDescription__",
  "version": "1.3.0",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "/icons/icon16.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "alarms"
  ],
  "background": {
    "service_worker": "/static/js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/icons/icon16.png",
      "24": "/icons/icon24.png",
      "32": "/icons/icon32.png"
    }
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "/static/js/content-script.js"
      ],
      "css": [
        "/static/css/content-script.css"
      ],
      "run_at": "document_start"
    }
  ]
}