HDallakyan
HDallakyan

Reputation: 748

Chrome extension change border-radius and position

How can I add border-radius on chrome extension popup? Also, can I add something like margin-top to the popup?

Upvotes: 5

Views: 6337

Answers (2)

HDallakyan
HDallakyan

Reputation: 748

I got the answer from chromium developer:

Alas, that's not something you can control. Your popup content is basically an iframe inside a window - you can't control the host window

Upvotes: 13

Jean-Alphonse
Jean-Alphonse

Reputation: 816

Chrome simply doesn't allow that.
Alternatives are, instead of the popup, opening a new window or injecting a content script in the active tab to display a modal.

Upvotes: 5

Related Questions