Files
LWLT-AIBOT/chrome-extension/ltjt-order-assistant/manifest.json
2026-09-16 11:50:50 +08:00

46 lines
1004 B
JSON

{
"manifest_version": 3,
"name": "联泰下单助手",
"version": "0.5.186",
"description": "在已登录 LTJT ERP 页面内规划并受控执行联泰 ERP 业务操作。",
"permissions": [
"activeTab",
"scripting",
"storage",
"tabs",
"webNavigation",
"alarms",
"unlimitedStorage"
],
"host_permissions": [
"https://lwlt.hisy.cc/*",
"https://lwlt.nianxx.cn/*",
"http://localhost/*",
"http://127.0.0.1/*",
"http://localhost:8786/*",
"http://127.0.0.1:8786/*"
],
"content_scripts": [
{
"matches": [
"https://lwlt.nianxx.cn/*",
"http://localhost/*",
"http://127.0.0.1/*",
"http://localhost:8786/*",
"http://127.0.0.1:8786/*"
],
"js": [
"business-bridge.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "联泰下单助手",
"default_popup": "popup.html"
}
}