chore: thunderbird

This commit is contained in:
Gabe
2025-05-18 00:34:20 +08:00
parent 8ec06b0c84
commit 0621957592

View File

@@ -17,6 +17,7 @@ import {
CMD_TOGGLE_STYLE, CMD_TOGGLE_STYLE,
CMD_OPEN_OPTIONS, CMD_OPEN_OPTIONS,
CMD_OPEN_TRANBOX, CMD_OPEN_TRANBOX,
CLIENT_THUNDERBIRD,
} from "./config"; } from "./config";
import { getSettingWithDefault, tryInitDefaultData } from "./libs/storage"; import { getSettingWithDefault, tryInitDefaultData } from "./libs/storage";
import { trySyncSettingAndRules } from "./libs/sync"; import { trySyncSettingAndRules } from "./libs/sync";
@@ -139,7 +140,7 @@ browser.runtime.onInstalled.addListener(() => {
tryInitDefaultData(); tryInitDefaultData();
//在thunderbird中注册脚本 //在thunderbird中注册脚本
if (process.env.REACT_APP_CLIENT === "thunderbird") { if (process.env.REACT_APP_CLIENT === CLIENT_THUNDERBIRD) {
registerMsgDisplayScript(); registerMsgDisplayScript();
} }
@@ -166,7 +167,7 @@ browser.runtime.onStartup.addListener(async () => {
} }
//在thunderbird中注册脚本 //在thunderbird中注册脚本
if (process.env.REACT_APP_CLIENT === "thunderbird") { if (process.env.REACT_APP_CLIENT === CLIENT_THUNDERBIRD) {
registerMsgDisplayScript(); registerMsgDisplayScript();
} }