41 lines
878 B
JSON
41 lines
878 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "联泰下单助手",
|
|
"version": "0.3.1",
|
|
"description": "在已登录 LTJT ERP 页面内规划并受控执行联泰 ERP 业务操作。",
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"storage",
|
|
"tabs"
|
|
],
|
|
"host_permissions": [
|
|
"https://ltjt.yunzhi.run/*",
|
|
"http://localhost/*",
|
|
"http://127.0.0.1/*",
|
|
"http://localhost:8786/*",
|
|
"http://127.0.0.1:8786/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"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"
|
|
}
|
|
}
|