Examine source code of NattyNote

Inspect and view changes in NattyNote source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
}