Files
teams-alias/manifest.json
2026-01-05 12:22:01 -04:00

27 lines
708 B
JSON

{
"manifest_version": 3,
"name": "Teams 别名管理",
"version": "0.2.0",
"icons": {
"16": "icons/teams-alias-16.png",
"32": "icons/teams-alias-32.png",
"48": "icons/teams-alias-48.png",
"128": "icons/teams-alias-128.png"
},
"description": "给 Teams 好友设置别名",
"permissions": ["storage", "scripting"],
"host_permissions": [
"https://teams.live.com/v2*",
"https://nocodb.example.com/*"
],
"content_scripts": [
{
"matches": ["https://teams.live.com/v2*"],
"js": ["env.js", "utils.js", "content.js"]
}
],
"action": {
"default_popup": "popup.html"
}
}