1
I would like to make an extension for Google Chrome that enables a horizontal bar that is always available at the top of the user window. The placement would be something like:
The question is: how to achieve this behavior? I thought of adding the HTML file as a popup
in the browser_action
from the manifest file, but it made him disappear as soon as he lost focus, which is not quite what I want. I also thought of "boxing" the HTML code inside a Javascript (exchanging, ex, <tag></tag>
for document.write("<tag></tag>")
, and add to the manifest as a content_script
, but I couldn’t make a bar appear when I tried it. Someone can help me?