LLMBB-Agent / chrome_agent /manifest.json
vlff李飞飞
优化chrome 插件
eb10065
{
"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:///*/*"
]
}
]
}