Skip to content

Commit

Permalink
feat: add masked email logo assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ajyey committed Jun 17, 2023
1 parent d7698b8 commit 39daac8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 3 deletions.
Binary file removed public/icon-128.png
Binary file not shown.
Binary file removed public/icon-34.png
Binary file not shown.
Binary file added public/icon128.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 public/icon34.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 public/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added src/assets/img/icon128.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/img/icon34.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/img/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ const manifest: Manifest.WebExtensionManifest = {
},
action: {
default_popup: 'src/pages/popup/index.html',
default_icon: 'icon-34.png'
default_icon: 'icon34.png'
},
icons: {
'128': 'icon-128.png'
'34': 'icon34.png',
'48': 'icon48.png',
'128': 'icon128.png'
},
permissions: ['activeTab'],
content_scripts: [
Expand All @@ -31,7 +33,12 @@ const manifest: Manifest.WebExtensionManifest = {
devtools_page: 'src/pages/devtools/index.html',
web_accessible_resources: [
{
resources: ['contentStyle.css', 'icon-128.png', 'icon-34.png'],
resources: [
'contentStyle.css',
'icon128.png',
'icon34.png',
'icon48.png'
],
matches: []
}
]
Expand Down

0 comments on commit 39daac8

Please sign in to comment.