FluffyPuffin File Encryption Free

FluffyPuffin Free encrypts any file less than 1MB to a chosen password and will automatically encrypt any download
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FluffyPuffin File Encryption Free",
  "short_name": "FluffyPuffin",
  "description": "FluffyPuffin Free encrypts any file less than 1MB to a chosen password and will automatically encrypt any download",
  "version": "1.1",
  "icons": {
    "16": "icon.png",
    "48": "DowncryptIcon48.png",
    "128": "DowncryptAESIcon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "downloads",
    "contextMenus",
    "tabs",
    "http://*/",
    "https://*/"
  ]
}