admin管理员组文章数量:1344238
When I run my code, it es up with "about blank" instead of my extension options. I would like it to open the options in front of the extensions. Here is some of my extension code-
popup.js:
document.getElementById('div_options').onclick = openOps;
function openOps() {
window.open("chrome://extensions/?options=pgapbgeppkbeghldobmjehpbdleapdip");
closeAndReloadPopup();
};
popup.html:
<li>
<a href="#"><div id="div_options">Options</div></a>
</li>
manifest.json:
{
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"page_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "Scratch theme loader",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": ["src/options/options.html"],
"permissions": [
"tabs",
"storage",
"declarativeContent",
"/*",
"/*"
]
}
options.html:
<html>
<stuff>
</html>
When I run my code, it es up with "about blank" instead of my extension options. I would like it to open the options in front of the extensions. Here is some of my extension code-
popup.js:
document.getElementById('div_options').onclick = openOps;
function openOps() {
window.open("chrome://extensions/?options=pgapbgeppkbeghldobmjehpbdleapdip");
closeAndReloadPopup();
};
popup.html:
<li>
<a href="#"><div id="div_options">Options</div></a>
</li>
manifest.json:
{
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"page_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "Scratch theme loader",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": ["src/options/options.html"],
"permissions": [
"tabs",
"storage",
"declarativeContent",
"https://scratch.mit.edu/*",
"https://pastebin./raw/*"
]
}
options.html:
<html>
<stuff>
</html>
Share
Improve this question
asked Apr 16, 2016 at 19:40
MelkorMelkor
7991 gold badge12 silver badges30 bronze badges
1
-
In general, don't use
window.open
in extensions. Rely onchrome.tabs
andchrome.windows
, creation does not require permissions. – Xan Commented Apr 16, 2016 at 20:40
1 Answer
Reset to default 12Use the remended way: chrome.runtime.openOptionsPage(callback)
Open your Extension's options page, if possible. The precise behavior may depend on your manifest's options_ui or options_page key, or what Chrome happens to support at the time. For example, the page may be opened in a new tab, within chrome://extensions, within an App, or it may just focus an open options page. It will never cause the caller page to reload. If your Extension does not declare an options page, or Chrome failed to create one for some other reason, the callback will set lastError.
https://developer.chrome./extensions/runtime#method-openOptionsPage
Alternatively, chrome.tabs.create({ url: "chrome://extensions/?options=" + chrome.runtime.id }, callback)
or chrome.tabs.create({ url: "options.html" }, callback)
本文标签: javascriptOpen chrome options from popupStack Overflow
版权声明:本文标题:javascript - Open chrome options from popup - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743738580a2530467.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论