Examine source code of SumBuddy - Browser AI Assistant

Inspect and view changes in SumBuddy - Browser AI Assistant 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
{
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "0.6.2",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "unlimitedStorage",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/content-scripts/summary-panel.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "/mermaid/**"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content-scripts/summary-panel.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "addon@sumbuddy.app"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+J",
        "mac": "Command+J",
        "default": "Ctrl+J"
      }
    },
    "show-selection-helper": {
      "suggested_key": {
        "windows": "Ctrl+K",
        "mac": "Command+K",
        "default": "Ctrl+K"
      },
      "description": "显示划词助手"
    }
  },
  "action": {},
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/summary-panel.js"
      ]
    }
  ]
}