Clipy: AI-Powered YouTube Video Search

Clipy: AI-Powered YouTube Video Search

Search through videos of any language, find the most relevant clips and timestamp to them using AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clipy: AI-Powered YouTube Video Search",
  "description": "Search through videos of any language, find the most relevant clips and timestamp to them using AI.",
  "version": "1.0.7",
  "manifest_version": 3,
  "action": {
    "default_title": "Clipy",
    "default_icon": {
      "32": "assets/images/icon-34.png",
      "128": "assets/images/icon-128.png"
    }
  },
  "icons": {
    "32": "assets/images/icon-34.png",
    "128": "assets/images/icon-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity"
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "assets/js/lib/jquery.min.js",
        "content/js/content.js",
        "content/js/font-awesome.js"
      ],
      "css": [
        "/content/css/content.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}