Skip to content

Commit

Permalink
chore: 로고 교체
Browse files Browse the repository at this point in the history
  • Loading branch information
jaem1n207 committed May 15, 2024
1 parent 47f4940 commit 5e31047
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file removed extension/assets/icon-512.png
Binary file not shown.
Binary file added extension/assets/logo-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/logo-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export async function getManifest(): Promise<Manifest.WebExtensionManifest> {
description: pkg.description,
default_locale: 'en',
action: {
default_icon: './assets/icon-512.png',
default_icon: './assets/logo-512.png',
},
options_ui: {
page: './dist/options/index.html',
Expand All @@ -30,9 +30,9 @@ export async function getManifest(): Promise<Manifest.WebExtensionManifest> {
service_worker: './dist/background/index.mjs',
},
icons: {
16: './assets/icon-512.png',
48: './assets/icon-512.png',
128: './assets/icon-512.png',
16: './assets/logo-512.png',
48: './assets/logo-512.png',
128: './assets/logo-512.png',
},
permissions: ['tabs', 'storage', 'activeTab'],
host_permissions: ['<all_urls>'],
Expand Down

0 comments on commit 5e31047

Please sign in to comment.