Base64 Decoder

Base64 Decoder

Decodes Base64 strings. Highlight the string and right-click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Base64 Decoder",
  "description": "Decodes Base64 strings. Highlight the string and right-click.",
  "version": "0.3",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "zepto.js",
        "content.js"
      ]
    }
  ],
  "manifest_version": 3
}