Snip - Remove HTML Elements

Snip - Remove HTML Elements

Remove any element from any website with just one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Snip - Remove HTML Elements",
  "short_name": "Snip - Remove HTML Elements",
  "version": "2.12",
  "description": "Remove any element from any website with just one click",
  "permissions": [
    "storage",
    "contextMenus",
    "identity",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "snip-it": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Snip an element"
    },
    "toggle-snipping": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Start/End snipping"
    },
    "reset-snipping": {
      "suggested_key": {
        "default": "Alt+R"
      },
      "description": "Reset snipping"
    },
    "remove-it": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Remove elements"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "start.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "lib/content.js",
        "snip.js"
      ],
      "css": [
        "snip.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "images/16.png",
    "24": "images/24.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmnJJDpj7yV6VbCE+bOnzBm2iW2QkTObu9XS0B2ol951+aGbhO6lL9DewIyD6xZxXDRP5dQSYe3+Busy1tYAmgPEnsTVEgOf3ejG1qST/9ef+rz0wLOfQimNYkYKXg65hsfgnbojRqaNg6ltFHyz/STk9LawZgZxOKZF6vjGknDXMp6iYTuKH3fecSvPN133XrRMrh4jH2B0ZWTcUPWlVIehYvJP5jqJnmOweqNoacUz4/5PmxCb1nK20OF+SQLMwUReBxJ35AVB7w1wsCyPdJtNAicNgHOaxwY3yzd82YdnzrtYU0dp+clKwBxByzRcZUZ2NHltYfHMEjQldEQB7XwIDAQAB",
  "oauth2": {
    "client_id": "845383099804-3k6eha05b65bj0bnpjfaeg0c4ofltgun.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.goodmovies.io/*"
    ]
  },
  "manifest_version": 3
}