Gmail Append HTML

Gmail Append HTML

Allows the usage of HTML content in Gmail from the context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "description": "Allows the usage of HTML content in Gmail from the context menu.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3IMmlcXDjM3KWWwZg/gsdsnEVWzCKazvQrOOs2ij+qga75uUDF2Xva3cfw6fjv8lniZqk5CXc6krpUxWD+2rV7Ect4w3ivDVcxK3xsjbMiKR9V1FMzAw5pWHYbA052NCEDk3Tb8OcDC+aqhZpRWmueFbJhxv5TXf2VanQnLD8BYua0bXAHBA6ZRiNdlMYPqTFDyl/fzmoFe+YhvgY2nUrpMVPxsVOFZ/YWlThFmjzsZ4V85avIqCRhqCuj5zxdb0NmU6990ZMFeLivRAs88czBvVNsclyaFAotXHQkis9x9LaOh3Q245I/sn8ICMYTJBcrdZrPgIYcPwdFEUQBqncwIDAQAB",
  "manifest_version": 3,
  "name": "Gmail Append HTML",
  "permissions": [
    "contextMenus",
    "clipboardRead",
    "tabs",
    "activeTab",
    "webNavigation",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.7.1"
}