Selection Decoder

Selection Decoder

Decode selected Base64 text using the context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Selection Decoder",
  "version": "1.0",
  "description": "Decode selected Base64 text using the context menu.",
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "decoder.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}