32 lines
625 B
JSON
32 lines
625 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Qwen AI Automation Suite",
|
|
"version": "1.0.0",
|
|
"description": "AI-powered browser automation with Qwen integration",
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"storage"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Qwen AI Automation"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
} |