Magic Gourd: Web Highlight & Note Assistant

Magic Gourd Browser Extension is designed specifically for highlighting text and images and taking notes on any webpage. While reading, if you come across something that inspires you, a simple click will highlight it.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "locale_specific": {
    "zh_HK": {
      "default_locale": "zh_TW"
    },
    "zh_MO": {
      "default_locale": "zh_TW"
    }
  },
  "version": "0.25.1",
  "action": {
    "default_icon": "main-action-icon-128.png"
  },
  "commands": {
    "toggle_main_panel": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "__MSG_shortcut_toggle_main_panel__"
    },
    "highlight_current_video_frame": {
      "suggested_key": {
        "default": "Alt+H"
      },
      "description": "__MSG_shortcut_highlight_current_video_frame__"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module",
    "scripts": [
      "background.ts.js"
    ]
  },
  "icons": {
    "128": "install-icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "main.tsx-loader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "css": [
        "main.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*.js",
        "*.png",
        "*.css",
        "*.mjs",
        "*.webp",
        "*.svg",
        "*.ttf",
        "isDisabledDomain.js",
        "TempSettingsContext.js",
        "main.tsx.js"
      ],
      "use_dynamic_url": false
    }
  ],
  "permissions": [
    "background",
    "storage",
    "tabs",
    "scripting",
    "management"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "magic-gourd@flowmax",
      "strict_min_version": "109.0"
    }
  }
}