I have the following code in my chrome extension content script:
window.open(chrome.extension.getURL("options.html"),'_blank');
But whenever I try this, I just get a new tab with about:blank, not one with my options page.
When I run the same code (through the developer tools console) on the options page, it works properly. If I launch an alert with the text chrome.extension.getURL("options.html")
, it works as expected.
This chrome documentation page suggests that what I'm doing should work correctly. So, how should I go about trying to fix this?
EDIT:
I believe this has something to do with the content security policy.
- If I inject a link to the page and just click on it, I get about:blank
- If I inject a link and I right-click, and then either open in new tab/window or copy URL, it works fine.
- If I inject a redirect, I get redirected to about:blank
- If I inject the text of the URL anywhere, it works fine.
- If I inject the exact URL (no chrome.extension.getURL, etc.), from ANY non-extension page, it doesn't work.
So I guess my new (more general) question is, how can I launch my options page from a content script?
In order to be able to use your HTML-file (or any other resource) outside of the context of your extension (e.g. in a web-page), you need to add the target HTML file in the
web_accessible_resources
section of your manifest. E.g.:Extension file-structure:
content.js:
manifest.json: