Root
Root

Reputation: 29

how to change background color of icon in chrome extension notification

i have problem with chrome extension rich notification. My problem is about icon. I'm getting icons from a server. But thesee icon's sizes are 120 * 60 Width: 120 Height: 60

My notification: enter image description here

But i need 120 * 120. I tried to change height but failed. So i thought i can change background color. Current icon background color is gray. I need to change it to white or transparent. I searched but i couldnt find. I hope you can help me about resize height or change background color of chrome extension notification icon. Thanks.

Upvotes: 1

Views: 2149

Answers (1)

woxxom
woxxom

Reputation: 73576

There's no such thing in the notifications API.

Use Canvas API (some examples) to manually create 120x120 px colored background, combine it with the downsized image and then output it in the notification.

Upvotes: 1

Related Questions