Bookmarker for YouTube

Bookmarker for YouTube

Maximize your YouTube viewing experience with YouTube Bookmarker & Resumer. Save, organize and pick up where you left off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0",
  "name": "Bookmarker for YouTube",
  "description": "Maximize your YouTube viewing experience with YouTube Bookmarker & Resumer. Save, organize and pick up where you left off.",
  "background": {
    "service_worker": "background/background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "./icons/icon_128.png"
  },
  "icons": {
    "128": "./icons/icon_128.png",
    "2000": "./icons/icon_2000.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ]
}