Make Zero - Text Encryption

Make Zero - Text Encryption

Encrypt & decrypt your texts in any site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_app_name__",
  "version": "1.7.0",
  "description": "__MSG_app_description__",
  "icons": {
    "16": "static/images/icon.png",
    "48": "static/images/icon.png",
    "128": "static/images/icon.png"
  },
  "author": "zhy",
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ],
  "homepage_url": "https://github.com/sheepzh/make-zero",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Open the popup page."
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_listener.js",
        "content_scripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "static/popup.html",
    "default_icon": "static/images/icon.png"
  },
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}