Saima: AI-based video speed controller and note-taking assistant

Saima: AI-based video speed controller and note-taking assistant

Personalized playback speed, skip silence, voice boost and collaborative video notes on any platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "6.0.2",
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "homepage_url": "https://saima.ai",
  "icons": {
    "16": "assets/icons/enabled/16.png",
    "48": "assets/icons/enabled/48.png",
    "128": "assets/icons/enabled/128.png"
  },
  "background": {
    "service_worker": "src/modules/background/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*.localhost/*",
        "*://*.saima.ai/*",
        "*://*.coursera.org/*",
        "*://*.youtube.com/*",
        "*://*.edx.org/*",
        "*://*.loom.com/*",
        "*://*.udemy.com/*",
        "*://*.skillshare.com/*",
        "*://*.uteach.io/*"
      ],
      "js": [
        "src/modules/content/preload.js"
      ],
      "run_at": "document_start",
      "match_about_blank": false
    },
    {
      "all_frames": true,
      "matches": [
        "*://*.localhost/*",
        "*://*.saima.ai/*",
        "*://*.coursera.org/*",
        "*://*.youtube.com/*",
        "*://*.edx.org/*",
        "*://*.loom.com/*",
        "*://*.udemy.com/*",
        "*://*.skillshare.com/*",
        "*://*.uteach.io/*"
      ],
      "js": [
        "src/modules/content/index.js"
      ],
      "run_at": "document_idle",
      "match_about_blank": false
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/enabled/16.png",
      "48": "assets/icons/enabled/48.png",
      "128": "assets/icons/enabled/128.png"
    },
    "default_title": "Saima: Enabled (💙 enjoy)"
  },
  "host_permissions": [
    "*://*.saima.ai/*"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/modules/inject/*.js",
        "assets/**/*.onnx",
        "assets/**/*.wasm",
        "assets/**/*.js",
        "assets/**/*.css",
        "assets/**/*.svg",
        "assets/**/*.png",
        "assets/**/*.jpg",
        "assets/**/*.woff",
        "assets/**/*.woff2"
      ],
      "matches": [
        "*://*.localhost/*",
        "*://*.saima.ai/*",
        "*://*.coursera.org/*",
        "*://*.youtube.com/*",
        "*://*.edx.org/*",
        "*://*.loom.com/*",
        "*://*.udemy.com/*",
        "*://*.skillshare.com/*",
        "*://*.uteach.io/*"
      ]
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}