LLMBB-Agent / browser_qwen /manifest.json
vlff李飞飞
update md
2319518
raw
history blame
No virus
952 Bytes
{
"name": "BrowserQwen",
"description" : "An Extension Driven by LLM",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": "img/popup.png",
"default_title": "BrowserQwen"
},
"permissions": [
"tabs",
"notifications",
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"16": "img/popup.png",
"32": "img/popup.png",
"48": "img/popup.png",
"128": "img/popup.png"
},
"content_scripts": [
{
"js": ["src/content.js"],
"matches": [
"https://www.jianshu.com/p/*",
"https://*/*",
"http://*/*",
"file:///*/*"
]
}
]
}