Coursnap - Summarizer for Long YouTube Videos

Coursnap - Summarizer for Long YouTube Videos

Premier Summarizer for Courses, lectures, and any long YouTube Videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Coursnap - Summarizer for Long YouTube Videos",
  "version": "2.0.5",
  "manifest_version": 3,
  "description": "Premier Summarizer for Courses, lectures, and any long YouTube Videos.",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "32": "icons/logo.png",
    "128": "icons/logoBig.png"
  },
  "commands": {
    "watch-later-shortcut": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "Watch Later"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:5173/*",
      "*://*.coursnap.app/*"
    ]
  },
  "options_page": "extension.html#/option",
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "image/*"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/*.*",
        "assets/**/*.*",
        "/assets/*.*",
        "/assets/**/*.*"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "index.html",
        "extension.html"
      ]
    }
  ]
}