Skip to content

Commit

Permalink
Extension icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dedoussis committed Sep 12, 2022
1 parent d11d907 commit af04e18
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 deletions.
Binary file added src/assets/img/icon-120.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 modified src/assets/img/icon-128.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/icon-16.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/icon-32.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 removed src/assets/img/icon-34.png
Binary file not shown.
Binary file added src/assets/img/icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 0 additions & 7 deletions src/assets/img/logo.svg

This file was deleted.

5 changes: 4 additions & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"background": { "service_worker": "background.bundle.js" },
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png"
"default_icon": "icon-32.png"
},
"content_scripts": [
{
Expand All @@ -33,6 +33,9 @@
],
"host_permissions": ["https://*.apple.com/*", "https://*.icloud.com/*"],
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}
12 changes: 11 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,17 @@ var options = {
force: true,
},
{
from: 'src/assets/img/icon-34.png',
from: 'src/assets/img/icon-48.png',
to: path.join(__dirname, 'build'),
force: true,
},
{
from: 'src/assets/img/icon-32.png',
to: path.join(__dirname, 'build'),
force: true,
},
{
from: 'src/assets/img/icon-16.png',
to: path.join(__dirname, 'build'),
force: true,
},
Expand Down

0 comments on commit af04e18

Please sign in to comment.