Examine source code of Fleeting Notes

Inspect and view changes in Fleeting Notes 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",
  "name": "Fleeting Notes",
  "description": "Quick notes from the browser to Obsidian",
  "icons": {
    "16": "/icons/16.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "version": "0.11.2",
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "action": {
    "default_icon": "/icons/196.png",
    "default_title": "Fleeting Notes Extension"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "sidePanel"
  ],
  "side_panel": {
    "default_path": "web-ext.html"
  },
  "background": {
    "service_worker": "extension/background3.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "extension/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "web-ext.html",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    },
    "create-new-note": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Create new note",
      "global": true
    },
    "open-persistent-window": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Open persistent window",
      "global": true
    }
  },
  "manifest_version": 3
}