VideoMark - Take notes on YouTube

VideoMark - Take notes on YouTube

VideoMark is a simple tool that can help you take notes on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_description__",
  "version": "0.0.25",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "permissions": [
    "identity",
    "tabs",
    "storage",
    "cookies",
    "unlimitedStorage",
    "notifications"
  ],
  "host_permissions": [
    "https://drive.google.com/",
    "https://vm.gameaibo.com/",
    "https://account.videomark.app/",
    "http://*/*",
    "https://*/*"
  ],
  "oauth2": {
    "client_id-prod": "205652667378-ii9lecfhvt0aa25rs4dd3129icd0qch3.apps.googleusercontent.com",
    "client_id-my-test": "205652667378-nnedsmcu92eq8ql4ulr123nclrjub1cm.apps.googleusercontent.com",
    "client_id-yusheng-test": "205652667378-5357rvmbl9p767m65e0jql536pokn3g7.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ],
    "client_id": "205652667378-ii9lecfhvt0aa25rs4dd3129icd0qch3.apps.googleusercontent.com"
  },
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "commands": {
    "run-foo": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Run \"foo\" on the current page."
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://youtube.com/*"
      ],
      "js": [
        "contentScript.bundle.js",
        "youtube.bundle.js"
      ],
      "css": [
        "youtube.css"
      ]
    },
    {
      "matches": [
        "*://localhost/*",
        "*://vm.gameaibo.com/*",
        "*://account.videomark.app/*"
      ],
      "js": [
        "webApp.bundle.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "options.html",
        "icon-128.png",
        "icon-34.png",
        "youtubeScript.js"
      ],
      "extension_ids": [],
      "matches": [
        "http://localhost:3000/*",
        "http://localhost:3001/*",
        "https://vm.gameaibo.com/*",
        "https://account.videomark.app/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "http://localhost:3001/*",
      "https://vm.gameaibo.com/*",
      "https://account.videomark.app/*"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}