We're writing a Chrome extension that creates information pop-ups. We would like to be able to toggle the font-size at the user's request at runtime.
The strange thing is, the stylesheet, which is included in the Chrome extension manifest, does not show up in the page head list of stylesheets.
I presume the stylesheet must be referenced using a chrome.extension.getStylesheet or some such operator.
Once we have an object pointer to the relevant stylesheet, it is our intent to adjust the font-size of the corresponding element.
Any help?
Sam