Hide Comment - Comment Blocker

Hide Comment - Comment Blocker

Switch comments on/off across popular websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_product_name__",
  "version": "1.0.0",
  "description": "__MSG_manifest_description__",
  "default_locale": "en",
  "offline_enabled": true,
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "incognito": "split",
  "icons": {
    "128": "images/main-icon/logo.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/utils.js",
        "scripts/injected/injection-manager.js",
        "scripts/event-bridge.js",
        "scripts/injected/injected-event-bridge.js",
        "scripts/injected/controller.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resources/shutup.css",
        "resources/null.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/browser-action/default-state.png",
      "32": "images/browser-action/[email protected]"
    },
    "default_title": "__MSG_product_name__"
  },
  "options_page": "options/index-wrapper.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'none'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}