Omi

Omi

Omi helps you remember your activities on the web. Never forget any content you read!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Omi",
  "description": "Omi helps you remember your activities on the web. Never forget any content you read!",
  "version": "0.0.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "content_script.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "all_frame_script.js"
      ]
    }
  ],
  "commands": {
    "invoke_chat_window": {
      "suggested_key": {
        "default": "Alt+O",
        "mac": "Alt+O"
      },
      "description": "Open the chat window"
    }
  },
  "permissions": [
    "storage",
    "notifications",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "sandbox": {},
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts script-src 'self' 'unsafe-eval'; img-src data:"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "viewer.html",
        "floating_chat.html",
        "tokenizer/encoder.json",
        "tokenizer/vocab.bpe",
        "/icons/48x.png",
        "inject_script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "Omi - click to view",
    "default_icon": {
      "16": "/icons/16x.png",
      "32": "/icons/32x.png",
      "48": "/icons/48x.png",
      "128": "/icons/128x.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/icons/16x.png",
    "32": "/icons/32x.png",
    "48": "/icons/48x.png",
    "128": "/icons/128x.png"
  }
}