Elon Mask

Elon Mask

Censor selected keywords during web browsing.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Elon Mask",
  "description": "Censor selected keywords during web browsing.",
  "version": "0.3",
  "icons": {
    "16": "/images/elon_mask_16.png",
    "48": "/images/elon_mask_48.png",
    "128": "/images/elon_mask_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "/images/elon_mask_16.png",
      "48": "/images/elon_mask_48.png",
      "128": "/images/elon_mask_128.png"
    },
    "default_title": "Elon Mask Test",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      }
    }
  }
}