I'd like to build a chrome extension to inject some sensitive content onto the current page. The current page should not be able to access it, but the content should be rendered on the page so the user can see it.
If I put the sensitive content into the DOM, the current page would be able to interrogate the DOM and access the sensitive content.
The only way I can think of which might work is to inject an iFrame which would then be protected by Cross Site Scripting.
Are there any HTML elements, tools, libraries or other techniques that might allow me to achieve this?