Spaces:
Running
Running
File size: 1,080 Bytes
2319518 aa4486a 2319518 eb10065 2319518 eb10065 2319518 eb10065 f973cc6 aa4486a 2319518 b53a832 eb10065 b53a832 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 47 48 49 |
{
"name": "BrowserLLMBB",
"description" : "An Extension Driven by LLM",
"version": "1.0",
"manifest_version": 3,
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"options_page": "options/options.html",
"action": {
"default_popup": "popup/popup.html",
"default_icon": "img/popup.png",
"default_title": "BrowserLLMBB"
},
"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": [
"popup/content.js",
"popup/md5.js"
],
"matches": [
"https://www.jianshu.com/p/*",
"https://*/*",
"http://*/*",
"file:///*/*"
]
}
]
}
|