PGP Manager

PGP Manager

This extensions manages your PGP keys. You can add or generate a Public/Private key pair or you can generate one. Then you will be…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PGP Manager",
  "version": "1.01",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyj4QbP8OKFq4uewuYXfGMw60L5TB7tKrnrF1K20+lZ5BichgaSKTUtk58OBNR/F2qrnDbrnD+REQRhFCFXesdjkq5cFHO0NELkMhyPxz7ZnlgWsfdG1w+B5GJP9pTZzQjE3NRz90WlzAN17AokqcADyQ8DvFxRDi3VvoyjnM0FxSfcjwxHYBhCV7li6fHes29r1oxZHkJtatc2Y5+FVIvdBDCFw9mLN9SiL0MvVX2Kion8KrK6qMPExblU4N5R+XqG0ubJMM1EpdSBeyohP/fBDh2vq/kXqXOTBMtmnfJZmNz6ptIgsNEmPN1ZTQ03zosT7S4hlGch32OcNmK5BcDwIDAQAB",
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/js/*.js",
        "lib/css/*.css",
        "icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "32": "icons/pgp-32.png",
    "64": "icons/pgp-64.png",
    "96": "icons/pgp-96.png",
    "128": "icons/pgp-128.png"
  },
  "action": {
    "default_icon": {
      "32": "icons/pgp-32.png",
      "64": "icons/pgp-64.png",
      "96": "icons/pgp-96.png",
      "128": "icons/pgp-128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "options_page": "options/options.html",
  "oauth2": {
    "client_id": "502853293488-h214nok01gpmvokj2r838ja8h62po8qm.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.appdata",
      "https://www.googleapis.com/auth/drive.appfolder",
      "https://www.googleapis.com/auth/drive.file"
    ]
  }
}