Cypherdog Encryption

Cypherdog Encryption

Encrypt any file, any text, and share via any medium, any time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Cypherdog Encryption",
  "description": "Encrypt any file, any text, and share via any medium, any time",
  "version": "1.0.1",
  "version_name": "1.0.1",
  "action": {
    "default_icon": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://outlook.live.com/*",
        "https://outlook.office.com/*",
        "https://outlook.office365.com/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ],
      "css": [
        "styles/multi-email-input.css"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage",
    "notifications"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}