SumBuddy is a browser AI assistant allows you to chat based on web page content and use your own AI models
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.5.1",
"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": [
"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": {
"service_worker": "background.js"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts/summary-panel.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}