Auto Screen Recorder with Log

Auto Screen Recorder with Log

Automatic screen recorder with logging in real time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShort__",
  "description": "__MSG_extDesc__",
  "author": "effi",
  "version": "1.0.27",
  "minimum_chrome_version": "88",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApdTWl/+OCsMzbyoHJ9eFeMjNW1Laq8sJzDwp9T1le2T3VAMyNClNf2U0Czyz5y+ieyQeXLN/iluNWurLfg8DvY4HHIcr5IVGmqWj7AfafHU9WSLEVp+JFByO+DWM/0zgcCQnxrF6BPKQO9okGM6p8Gn7oPo+LEj9LrlpcNZIAQ4RB7liUjV66BUfhcnSFN1itSYibMReqIYuvsOfBFG9R0j8n+NWFtFVMhYdysPv1h4DsUpSVbHysLyaK+qMZhbq7OUh3XcJ2TjBATP9MiKBh2QmEtC9evfTvYJfpKQ3nhrh7RqhaEWA83fHFHmcQJ0QGRvC709P37Q+LAImfkSLBQIDAQAB",
  "manifest_version": 3,
  "homepage_url": "https://effi.io",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "world": "MAIN",
      "js": [
        "scripts/logger.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/effi-64x64.png",
      "22": "images/effi-64x64.png",
      "32": "images/effi-64x64.png"
    },
    "default_title": "",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/effi-16x16.png",
    "32": "images/effi-32x32.png",
    "64": "images/effi-64x64.png"
  },
  "permissions": [
    "nativeMessaging",
    "storage",
    "tabs",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.effi.io/*",
    "*://*/*"
  ],
  "externally_connectable": {
    "ids": [],
    "matches": [
      "https://*.effi.io/*"
    ],
    "accepts_tls_channel_id": false
  }
}