Examine source code of 图片转换base64

Inspect and view changes in 图片转换base64 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "1.7resigned1",
  "default_locale": "zh",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "32": "icons/32.png",
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "applications": {
    "gecko": {
      "id": "imgtobase64@mjc.com"
    }
  },
  "permissions": [
    "clipboardWrite",
    "contextMenus",
    "notifications",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "imgToBase64.js"
      ]
    }
  ]
}