Keyboard History Recorder

Keyboard History Recorder

Keyboard History Recorder is an online Monitoring tool that helps you record the keystrokes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Keyboard History Recorder",
  "description": "Keyboard History Recorder is an online Monitoring tool that helps you record the keystrokes",
  "version": "2.1",
  "icons": {
    "16": "keyboard_history_recorder.png",
    "48": "keyboard_history_recorder.png",
    "128": "keyboard_history_recorder.png"
  },
  "action": {},
  "background": {
    "service_worker": "back.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.5.0.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "tabs",
    "webRequest",
    "webNavigation",
    "scripting",
    "storage",
    "unlimitedStorage"
  ]
}