Lock The Text

Lock The Text

Encrypt your text data in browser before you submit it to a network

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Lock The Text",
  "version": "0.2.0",
  "description": "Encrypt your text data in browser before you submit it to a network",
  "background": {
    "page": "lttbkgrd.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "ltt-crcs.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "ltt19.png",
    "default_title": " Lock The Text: encrypt your text data in browser before you submit it to a network. ",
    "default_popup": "ltt-ppup.html"
  },
  "icons": {
    "19": "ltt19.png",
    "48": "ltt48.png",
    "128": "ltt128.png"
  },
  "permissions": [
    "tabs"
  ]
}