YouTube Notes to Notion with Udemy, Coursera, BiliBili and more by Snipo

Take YouTube notes directly to Notion, generate AI flashcards, capture screenshots, and sync learning courses with Notion
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": "__MSG_name__",
  "short_name": "Snipo",
  "description": "__MSG_description__",
  "author": "Dima Nabok",
  "homepage_url": "https://snipo.io",
  "default_locale": "en",
  "options_page": "/snipo-app/dist/index.html",
  "version": "3.13.8",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/build/app.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://*.notion.so/*"
      ],
      "css": [
        "/notion.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "/youtube.css"
      ],
      "run_at": "document_start"
    }
  ],
  "side_panel": {
    "default_path": "/sidepanel.html"
  },
  "background": {
    "service_worker": "/build/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icon/*",
        "/dist/*"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    },
    {
      "resources": [
        "/build/*",
        "/snipo-app/dist/*"
      ],
      "matches": [
        "https://*.notion.so/*"
      ]
    },
    {
      "resources": [
        "/build/skillshare.js"
      ],
      "matches": [
        "https://*.skillshare.com/*"
      ]
    },
    {
      "resources": [
        "/build/vimeo.js"
      ],
      "matches": [
        "https://player.vimeo.com/*"
      ]
    }
  ],
  "icons": {
    "16": "/icon/icon_16.png",
    "48": "/icon/icon_48.png",
    "128": "/icon/icon_128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardRead",
    "contextMenus",
    "notifications",
    "tabs",
    "system.display",
    "sidePanel",
    "declarativeNetRequestWithHostAccess"
  ],
  "action": {
    "default_popup": "/snipo-app/dist/index.html",
    "default_title": "__MSG_name__"
  },
  "commands": {
    "time": {
      "description": "__MSG_commands1__"
    },
    "screen": {
      "description": "__MSG_commands2__"
    },
    "pause": {
      "description": "__MSG_commands3__"
    },
    "back5s": {
      "description": "__MSG_commands4__"
    },
    "skip5s": {
      "description": "__MSG_commands5__"
    },
    "speed-inc": {
      "description": "__MSG_commands6__"
    },
    "speed-dec": {
      "description": "__MSG_commands7__"
    },
    "transcript": {
      "description": "__MSG_commands8__"
    },
    "clip": {
      "description": "__MSG_commands9__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}