mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-23 10:17:50 +00:00
58 lines
1.0 KiB
JSON
58 lines
1.0 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Qwen CLI Bridge",
|
|
"version": "1.0.0",
|
|
"description": "Bridge between Chrome browser and Qwen CLI for enhanced AI interactions",
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"tabs",
|
|
"storage",
|
|
"nativeMessaging",
|
|
"debugger",
|
|
"webNavigation",
|
|
"scripting",
|
|
"cookies",
|
|
"webRequest",
|
|
"sidePanel"
|
|
],
|
|
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
|
|
"background": {
|
|
"service_worker": "background/service-worker.js"
|
|
},
|
|
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content/content-script.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
},
|
|
|
|
"side_panel": {
|
|
"default_path": "sidepanel/sidepanel.html"
|
|
},
|
|
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
} |