Keylang

Keylang

Transforms your text into code that can only be understood by users with the key.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Keylang",
  "version": "1.3.1",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "description": "Transforms your text into code that can only be understood by users with the key.",
  "action": {
    "default_icon": {
      "16": "assets/keylang16.png",
      "48": "assets/keylang48.png",
      "128": "assets/keylang128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/keylang16.png",
    "48": "assets/keylang48.png",
    "128": "assets/keylang128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "script.js",
        "crypto.js"
      ]
    }
  ]
}