插件图标完善

This commit is contained in:
2025-12-20 23:04:01 +08:00
parent 32bf9f0ffe
commit 2bba2981b2
4 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

BIN
public/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -8,8 +8,8 @@
},
"permissions": ["storage"],
"icons": {
"16": "favicon.ico",
"48": "favicon.ico",
"128": "favicon.ico"
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}

View File

@@ -19,7 +19,7 @@ const DEFAULT_SETTINGS: UserSettings = {
backgroundBlur: 8,
searchEngines: [...SEARCH_ENGINES],
selectedEngine: SEARCH_ENGINES[0].name,
themeColor: THEMES[0].hex,
themeColor: '#f97316',
searchOpacity: 0.8,
enableMaskBlur: false,
maskOpacity: 0.2,
@@ -31,7 +31,7 @@ const DEFAULT_SETTINGS: UserSettings = {
searchHistory: [],
language: 'zh',
motto: '同是天涯沦落人,相逢何必曾相识',
searchGlow: 0.35
searchGlow: 0.5
};
type ViewMode = 'search' | 'dashboard';