Skip to content

Commit

Permalink
Merge pull request #30 from StevensSEC/icons
Browse files Browse the repository at this point in the history
New extension icon!
  • Loading branch information
carpenterd777 authored Mar 13, 2020
2 parents b2476e2 + 8f235f0 commit 3f4fc5c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
Binary file added src/assets/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/icon16.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/icon48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/background.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// These scripts run in the background continuously
import './assets/temp_icon.png';
import './assets/icon128.png';
import './assets/icon48.png';
import './assets/icon16.png';
import './features/canvas/CanvasIntegration';
import './features/tempBookmarks/TemporaryBookmarks';
import Settings from './shared/settings';
Expand Down
4 changes: 3 additions & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"<all_urls>"
],
"icons": {
"128": "assets/temp_icon.png"
"128": "assets/icon128.png",
"48": "assets/icon48.png",
"16": "assets/icon16.png"
},
"browser_action": {
"default_popup": "popup.html"
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const config = {
}),
],
resolve: {
extensions: ['.ts', '.js', '.png'],
extensions: ['.ts', '.js'],
},
};
export default config;

0 comments on commit 3f4fc5c

Please sign in to comment.