MarkVideo

MarkVideo

Saving timestamps of YouTube videos for the users reference and convenience of their work!!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "MarkVideo",
  "version": "2.1.0",
  "manifest_version": 3,
  "description": "Saving timestamps of YouTube videos for the users reference and convenience of their work!!",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://*.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/bookmark.png",
        "assets/play.png",
        "assets/delete.png"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "My YouTube Video Bookmarks",
    "default_popup": "./popup.html",
    "default_icon": "assets/logo.png"
  },
  "icons": {
    "128": "assets/logo.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}