E-mail Encryptor for GMail

E-mail Encryptor for GMail

Google Chrome plug-in for your e-mail encryption.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "E-mail Encryptor for GMail",
  "short_name": "E-mail Encryptor for GMail",
  "version": "1.1.3",
  "version_name": "1.1.3",
  "description": "Google Chrome plug-in for your e-mail encryption.",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "lib/jquery.js",
        "lib/jsrender.js",
        "lib/gmail.js",
        "lib/js.cookie.js",
        "utils.js",
        "localizations.js",
        "commands.js",
        "session.js",
        "main.js",
        "backgroundProxy.js",
        "login.js",
        "fileUploader.js",
        "mailComposer.js",
        "mailReader.js"
      ],
      "css": [
        "css/main.css"
      ]
    }
  ],
  "icons": {
    "16": "imgs/packageIcons/GmailEncr_Logo16x16.png",
    "48": "imgs/packageIcons/GmailEncr_Logo48x48.png",
    "128": "imgs/packageIcons/GmailEncr_Logo128x128.png"
  },
  "background": {
    "scripts": [
      "commands.js",
      "background.js",
      "backgroundUploader.js",
      "proxy.js",
      "lib/jquery.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "imgs/app-5.png",
    "default_title": "E-mail Encryptor for GMail",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "*://mail.google.com/*"
    ]
  },
  "web_accessible_resources": [
    "lib/jquery.js",
    "lib/gmail.js",
    "lib/jsrender.js",
    "lib/js.cookie.js",
    "containers.js",
    "templates/templates.html",
    "imgs/BS4_Login_Invalid.png",
    "imgs/BS4_PrivateKeySmall.png",
    "imgs/GmailEncr_LoginTut_New.jpg",
    "imgs/GmailEncr_2018_logoBig.png",
    "imgs/GmailEncr_2018_AttesaAnimataLogin.gif",
    "imgs/BS4_Attachments_Warning_Small.png",
    "imgs/BS4_composeIconRed.png",
    "imgs/BS4_composeIconWhite.png",
    "imgs/app-5.png",
    "imgs/GmailEncr2018_16x16.png"
  ],
  "manifest_version": 2
}