我正在制作Chrome扩展程序。单击popup.html
中的按钮可打开一个新窗口并加载feedback-panel.html
。
这样可行但是,点击后,我想检查窗口是否已打开,如果是这样,请关注它而不是创建一个新窗口。
JavaScript window.open only if the window does not already exist看起来很有意思,但是当打开窗口时,它依赖于打开的窗口作为变量存储在父页面上,并在打开新窗口之前检查它们。这对我不起作用,因为父窗口(popup.html
)经常会被关闭并重新打开,我会丢失变量。
我尝试实现相同的想法,但是将窗口变量存储在chrome.storage
中,因为它允许您存储对象。好吧,它确实让你存储对象,但它首先序列化它们,所以窗口变量失去了所有的功能,我最终得到了
result.feedbackPanel.focus()不是函数
以下是我的尝试:
function openFeedbackPanel(){
chrome.storage.local.get('feedbackPanel', function (result) {
console.log( result.feedbackPanel); // logs window object sans all functions
if(result.feedbackPanel && ! result.feedbackPanel.closed){
try{
result.feedbackPanel.focus();
}
catch(error){
chrome.storage.local.remove('feedbackPanel', function () {
});
createFeedbackPanel();
}
}
else{
createFeedbackPanel();
}
});
}
function createFeedbackPanel(){
var win = window.open('feedback-panel.html', 'Feedback', 'width=935, height=675');
console.log(win); // logs full object as expected
chrome.storage.local.set({"feedbackPanel": win});
}
$('#some-button').click(openFeedbackPanel());
所以,因为这不起作用:
如何检查是否已从非父窗口(未打开弹出窗口的窗口)打开弹出窗口?
答案 0 :(得分:3)
无需跟踪窗口并存储它们 如果你知道你的扩展ID,最简单的方法是测试所有标签网址并查看它是否已经打开
chrome.tabs.query({}, function(tabs) {
var doFlag = true;
for (var i=tabs.length-1; i>=0; i--) {
if (tabs[i].url === "chrome-extension://EXTENSION_ID/feedback-panel.html") {
//your popup is alive
doFlag = false;
chrome.tabs.update(tabs[i].id, {active: true}); //focus it
break;
}
}
if (doFlag) { //it didn't found anything, so create it
window.open('feedback-panel.html', 'Feedback', 'width=935, height=675');
}
});
这里已经回答了如何获取extension ID,
答案 1 :(得分:1)
您还可以使用消息传递系统。这是我用于扩展程序选项的示例。在按钮的onClick中调用这样的函数:
// send message to the option tab to focus it.
// if not found, create it
showOptionsTab: function() {
chrome.runtime.sendMessage({window: 'highlight'}, null, function(response) {
if (!response) {
// no one listening
chrome.tabs.create({url: '../html/options.html'});
}
});
},
在你的窗口/标签中听取这样的消息
// listen for request to make ourselves highlighted
chrome.runtime.onMessage.addListener(t.onMessage);
...
// message: highlight ourselves and tell the sender we are here
t.onMessage = function(request, sender, response) {
if (request.window === 'highlight') {
chrome.tabs.getCurrent(function(t) {
chrome.tabs.update(t.id, {'highlighted': true});
});
response(JSON.stringify({message: 'OK'}));
}
};
此方法的一个优点是它不需要选项卡权限。