Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ If you have any further questions, please contact us at [[email protected]

This work is licensed under MIT license. This project is based on the boilerplate [Chrome Extension Webpack](https://github.com/sszczep/chrome-extension-webpack) from Sebastian Szczepański. You can find the original license text inside [LICENSE.original](./LICENSE.original).

The logos and icons under `static/icons/tracetronic` are Copyright (c) [tracetronic GmbH](https://www.tracetronic.com/) and may be used within this project and may be published to firefox and chrome webstores as part of this project

This project uses the [Red Hat Display Text Font](https://github.com/RedHatOfficial/RedHatFont) with is licensed under SIL OPEN FONT LICENSE Version 1.1 (see [OFL-1.1.txt](./LICENSES/OFL-1.1.txt))

This project uses the [Material Symbols Outlined Font](https://fonts.google.com/icons) with is licensed under Apache License Version 2.0 (see [Apache-2.0.txt](./LICENSES/Apache-2.0.txt))
Expand Down
2 changes: 1 addition & 1 deletion src/popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function createFileListItem(file: ModifiedFile, index: number) {
const ext = getFileExt(file.filename);
if (SUPPORTED_FILES.includes(ext)) {
const fileImg = document.createElement('img');
fileImg.src = `icons/${ext}.png`;
fileImg.src = `icons/tracetronic/${ext}.png`;
fileImg.classList.add('icon');
fileInfoContainer.appendChild(fileImg);
}
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
16 changes: 8 additions & 8 deletions static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
"default_title": "Open with ecu.test diff",
"default_popup": "popup.html",
"default_icon": {
"16": "icons/16x.png",
"32": "icons/32x.png",
"48": "icons/48x.png",
"128": "icons/128x.png"
"16": "icons/tracetronic/16x.png",
"32": "icons/tracetronic/32x.png",
"48": "icons/tracetronic/48x.png",
"128": "icons/tracetronic/128x.png"
}
},
"icons": {
"16": "icons/16x.png",
"32": "icons/32x.png",
"48": "icons/48x.png",
"128": "icons/128x.png"
"16": "icons/tracetronic/16x.png",
"32": "icons/tracetronic/32x.png",
"48": "icons/tracetronic/48x.png",
"128": "icons/tracetronic/128x.png"
}
}