Spaces:
Running
Running
File size: 952 Bytes
2319518 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
{
"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:///*/*"
]
}
]
}
|