GLA-70: Set extension icons from provided icon pack#26
Merged
paoloanzn merged 1 commit intoMar 7, 2026
Merged
Conversation
GLA-70 Set extension icons from provided icon pack
OverviewWire up the Prism icon pack across all the places Chrome requires extension icons. The icon files will be provided by the designer — this issue covers correct placement and manifest registration only. Required SizesChrome MV3 requires icons at multiple sizes for different surfaces:
The toolbar action icon additionally supports:
File PlacementWXT copies everything in wxt.config.tsexport default defineConfig({
manifest: {
icons: {
16: 'icons/icon-16.png',
32: 'icons/icon-32.png',
48: 'icons/icon-48.png',
128: 'icons/icon-128.png',
},
action: {
default_icon: {
16: 'icons/icon-16.png',
32: 'icons/icon-32.png',
},
},
},
})Acceptance Criteria
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
public/icons(16, 32, 48, 128)manifest.iconsandmanifest.action.default_iconinwxt.config.tsicons/icon-16.pngpublic/iconto avoid placeholder/default icon usageValidation
npm run buildsucceedsicons: 16, 32, 48, 128action.default_icon: 16, 32Acceptance Criteria
public/icons/iconsfield registered in manifestaction.default_iconregistered in manifestchrome://extensionsmanagement page (manual check)