Agent_For_Supmea/manifest.json
2026-01-22 13:43:59 +08:00

26 lines
568 B
JSON

{
"manifest_version": 3,
"name": "Agent_For_Supmea",
"version": "0.1.17",
"permissions": ["activeTab", "storage"],
"background": {
"service_worker": "background/background.js"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "AI 配置"
},
"content_scripts": [
{
"matches": ["*://1718cloud.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["main.js", "scripts/*.js"],
"matches": ["*://1718cloud.com/*"]
}
]
}