NattyNote

NattyNote

Take time-stamped YouTube notes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "NattyNote",
  "description": "Take time-stamped YouTube notes.",
  "version": "2.0.0",
  "manifest_version": 3,
  "author": {
    "name": "Ahmad Alq",
    "url": "https://github.com/ahmedelq/NattyNote/"
  },
  "icons": {
    "48": "icons/nn.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "*://*.youtube.com/*"
  ],
  "action": {
    "default_popup": "./interface/cached.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "nattynote.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "./interface/cached.html",
  "options_ui": {
    "page": "./interface/nattybox.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}