Agent_For_Supmea/manifest.json

26 lines
568 B
JSON
Raw Normal View History

{
"manifest_version": 3,
2026-01-22 13:43:59 +08:00
"name": "Agent_For_Supmea",
"version": "0.1.17",
2026-01-11 12:22:49 +08:00
"permissions": ["activeTab", "storage"],
"background": {
2026-01-11 17:50:27 +08:00
"service_worker": "background/background.js"
2026-01-11 12:22:49 +08:00
},
"action": {
2026-01-11 17:50:27 +08:00
"default_popup": "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 17:50:27 +08:00
"resources": ["main.js", "scripts/*.js"],
2026-01-02 21:06:54 +08:00
"matches": ["*://1718cloud.com/*"]
}
]
2026-01-11 12:22:49 +08:00
}