Agent_For_Supmea/manifest.json

26 lines
544 B
JSON
Raw Normal View History

{
"manifest_version": 3,
2026-01-11 12:22:49 +08:00
"name": "Supmea Automation AI",
"version": "0.1.0",
"permissions": ["activeTab", "storage"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_title": "AI 配置"
},
"content_scripts": [
{
"matches": ["*://1718cloud.com/*"],
2026-01-02 21:06:54 +08:00
"js": ["content.js"],
"run_at": "document_idle"
}
],
2026-01-02 21:06:54 +08:00
"web_accessible_resources": [
{
2026-01-11 12:22:49 +08:00
"resources": ["*.js", "*.css"],
2026-01-02 21:06:54 +08:00
"matches": ["*://1718cloud.com/*"]
}
]
2026-01-11 12:22:49 +08:00
}