...
...
but I get an error like...
dfphddhabbmcnjlpimiagbcgnanmpboi/page1.htm". Extension manifest must request permission to access this host.
at Object...............I have played with putting every permission under the sun into my manifest.json...
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"tabs",
"notifications",
"<all_urls>",
"*://*/*"
]
and I have also tried DataURL (
RFC 2397)
Use
cases include making a local options page where I can get and set
attributes OR being able to add an iframe and load a page from some site
without running into cross-site scripting issues.
(It is possible to do this in Firefox.)Maybe there's a another way?
As
I am writing this I had another thought: what if I created a file
containing the full page locally then loaded it from here -- I'd at
least get around the need for injection (in theory) then I'd only need
to send messages to the browser. Of course without having any content
script to receive the messages..... Oh well.