LOCOTA

LOCOTA

Web Recorder for Google Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LOCOTA",
  "short_name": "LOCOTA`",
  "version": "0.4",
  "manifest_version": 3,
  "description": "Web Recorder for Google Chrome",
  "permissions": [
    "tabs",
    "alarms"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.0.0.min.js",
        "js/content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "commands": {
    "connect-websocket": {
      "suggested_key": {
        "default": "Ctrl+Shift+9"
      },
      "description": "Connect to web socket",
      "global": true
    },
    "disconnect-websocket": {
      "suggested_key": {
        "default": "Ctrl+Shift+7"
      },
      "description": "disconnect to web socket",
      "global": true
    }
  }
}