以与网站相同的标签以编程方式打开Chrome扩展页面

时间:2017-11-23 05:12:49

标签: javascript google-chrome google-chrome-extension

我正在制作基于chrome扩展程序的编辑器,我希望用户能够在收到如下链接时在扩展程序中打开文件:http://myeditor.com/link.html?file=xxxx

当我访问该网站时,我希望如此:

  • 如果打开网址的人有扩展程序,请打开chrome-extension://blahblah/?file=xxx
  • else显示该文件的只读版本和安装扩展名的链接。

现在,我在link.html文件中有一个如下所示的脚本:

    if (window.chrome) {
        if (chrome.app.getDetails() === null) {
            chrome.runtime.sendMessage(chromeId, { message: "isInstalled" }, function (reply) {
                if (reply) {
                    chrome.runtime.sendMessage(chromeId, { gotoUrl: document.location.search });
                }
            });
        }
    }

并在扩展程序的background.html中:

chrome.runtime.onMessageExternal.addListener(
    function(request, sender, sendResponse) {
        if (request) {
            if (request.message) {
                if (request.message == "isInstalled") {
                    sendResponse(true);
                }
            }
            if (request.gotoUrl) {
                var url = chrome.extension.getURL(request.gotoUrl);

                chrome.tabs.create({url: url}); // how do I open this in the same tab rather than create a new tab?
            }
        }
        return true;
    });

问题是代码会创建一个新选项卡,有没有办法可以在与我调用它的页面相同的选项卡中打开扩展页面?

1 个答案:

答案 0 :(得分:1)

实际上chrome.tabs.update代替chrome.tabs.create正常工作......