Komodo Screen Recorder & SOP

Komodo Screen Recorder & SOP

Record screen and get a magical SOP with an AI Summary

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.0.7",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhFvYQ/mQRjUI6SLRgESnLnW3FMu5AKzWyavSAZA6BGpRsmTIzfZOQneXQueTf99aQ7edUeVQyDBFZUgady8XgC2DQVTG5T7PVtstTAF4eFQgNhQDVg96Mp18YpiFRFjVadQkpWhA6zmrLGkvD2SLmutxhtt9UYyKnk4KKPgvnlPzX/2xfZDVUafPl8m9T4aW04ZLtPWlGcbxjUexZGNtNqLbljVBfHYXLyX1OsszntqoJ6gETzPubyHrpXEBM93j/RZMLmTu1udrmYz0AQYcgeqh0FtnNG4TxINCpIq07zI9Nry7XJ9Pz73RJN58fT+t1sMrmLbXquWf7DbsWv978wIDAQAB",
  "manifest_version": 2,
  "minimum_chrome_version": "107.0",
  "default_locale": "en",
  "permissions": [
    "<all_urls>",
    "https://*.komododecks.com/*",
    "https://komododecks.com/*",
    "activeTab",
    "storage",
    "notifications",
    "clipboardWrite",
    "unlimitedStorage"
  ],
  "icons": {
    "64": "static/images/icon/icon.png"
  },
  "browser_action": {
    "default_icon": "static/images/icon/icon.png",
    "default_title": "Komodo"
  },
  "background": {
    "scripts": [
      "dist/bg/rl-background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://spaces.vatom.com/*"
      ],
      "js": [
        "dist/cs/ui-variants/rl-vatom-ui.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/cs/rl-cs-root.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "dist/cs/rl-gmail.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "static/*",
    "dist/pages/iframes/*",
    "dist/cs/ui-variants/*.css"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+K"
      }
    },
    "toggle-pause-recording": {
      "description": "__MSG_Shortcut_Pause_Resume_a_recording__"
    },
    "toggle-pause-guide": {
      "description": "__MSG_Shortcut_Pause_Resume_recording_guide_steps__"
    },
    "stop-recording": {
      "description": "__MSG_Shortcut_Stop_a_recording__"
    },
    "pip-camera": {
      "description": "__MSG_Shortcut_Picture_in_picture_camera__"
    },
    "hide-ui": {
      "description": "__MSG_Shortcut_Hide_UI__"
    }
  },
  "options_ui": {
    "page": "dist/pages/options/options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "externally_connectable": {
    "matches": [
      "https://*.komododecks.com/*",
      "https://komododecks.com/*"
    ]
  }
}