add all files

This commit is contained in:
Julian Freeman
2025-07-01 20:16:57 -04:00
parent 26b71500ef
commit 4581297dac
11 changed files with 617 additions and 2 deletions

23
manifest.json Normal file
View File

@@ -0,0 +1,23 @@
{
"manifest_version": 3,
"name": "Teams 别名管理",
"version": "0.1.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*"],
"content_scripts": [
{
"matches": ["https://teams.live.com/v2*"],
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html"
}
}