Discord PGP

Discord PGP

An end to end encryption extension for discord DMs utilizing PGP (1024bit RSA and 128bit AES).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Discord PGP",
  "version": "0.3",
  "version_name": "0.3 alpha sync",
  "background": {
    "scripts": [
      "core.js",
      "sjcl.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://discordapp.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "webRequest",
    "https://discordapp.com/*"
  ]
}