Video-Notes

Video-Notes

Your personal youtube notes making assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Video-Notes",
  "version": "1.18",
  "description": "Your personal youtube notes making assistant",
  "action": {
    "default_popup": "index.html"
  },
  "oauth2": {
    "client_id": "926015470115-hukteq61217rbo79omj08b7bfc2n2mua.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "notes.png"
  },
  "background": {
    "matches": [
      "<all_urls>"
    ],
    "service_worker": "background.js"
  },
  "dependencies": {
    "google-apis": "latest"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}