Examine source code of VidSense

Inspect and view changes in VidSense source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "VidSense",
  "version": "2.0",
  "description": "AI-powered answers for YouTube videos in the current tab.",
  "icons": {
    "48": "eye-black.png",
    "128": "eye-black.png"
  },
  "action": {
    "default_icon": "eye-black.png",
    "default_title": "VidSense",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "https://vidsense.onrender.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}