Reputation: 748
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
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
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