Reputation: 1541
I'm currently writing chrome extension, which should basically display 100x100 pixel dialog box in the bottom left corner on every opened page (it should be always on top).
I have currently two ideas:
I prefer the second approach, since this box should stay there, during navigation and collect some data from the current page. However, I do not know if it is possible to display such a box without attaching it to the page's DOM?
Upvotes: 0
Views: 132
Reputation: 4672
No, it's not possible. Extensions can have page actions and browser actions, but otherwise aren't allowed to change Chrome's chrome. This is by design and won't be changed.
Upvotes: 1