FloatingBotExtension/manifest.json

26 lines
571 B
JSON

{
"manifest_version": 3,
"name": "Floating Bot Extension",
"version": "1.0",
"description": "一个可拖动的网页悬浮机器人窗口",
"permissions": ["activeTab", "storage"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}
}