Keyboard Privacy

Keyboard Privacy

Prevents behavioral profiling by randomizing the rate at which characters reach the DOM.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/background.js",
      "js/popup.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon_safe.png",
    "default_popup": "popup.html",
    "icons": [
      "icons/icon_safe.png"
    ],
    "name": "Keyboard Privacy"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "Prevents behavioral profiling by randomizing the rate at which characters reach the DOM.",
  "homepage_url": "https://paul.reviews/behavioral-profiling-the-password-you-cant-change/",
  "icons": {
    "16": "icons/icon_safe16.png",
    "48": "icons/icon_safe.png",
    "128": "icons/icon_safe128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhB3dA2clPF5pVrooKXXb7Z21EAi0NDRj4ZxA1lHtMdZtcpBHbrqgY7iE9521ly9KucX0LJtqESV8lV8Uu0ETI1JF4XuIkQdkCclu9oV2pvm+jInL/3uqs4TOy6c3CsjnaEMHUGdmJb1WO6nJ25+p6tp5TjNKrfjoZRjZ50eqJKqny4QaKLUxw9E3J0LteSQn3LRtLIJ69gsM8N5REvo0yLXAnjLmKH24tgVzREqdf9Q04psahKjYrlqephQJw3ZZq5LzdxU2y48YztNP8MxALh8RH4Fph8H9otPQXrqszcH1XhRbZfInOAF5WlMuaxTjbhg+1xS8pOkpniX684udBQIDAQAB",
  "manifest_version": 2,
  "name": "Keyboard Privacy",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.7"
}