Examine source code of Note Specific

Inspect and view changes in Note Specific 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Note Specific",
  "version": "1.1",
  "description": "Take notes on any given website. Once you return to the website you can see the notes you previously have taken.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Note Specific",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "options_page": "pages/options.html",
  "permissions": [
    "storage",
    "activeTab",
    "notifications",
    "tabs"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "js/ExtPay.js"
      ],
      "css": [
        "css/animate.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/notepad_popup.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}