使用window.html

时间:2017-07-12 17:57:52

标签: javascript html

我正在制作浏览器扩展程序,并且我有一个我想在新窗口中打开的credentialManager.html文件。目前这样做

     var credentialWindow = window.open("credentialManager.html",
 "Credential Manager", "width=150,height=250")

但它只是将credentialManager.html附加到我所在的任何网站域上并打开它。我希望它打开具有该名称的文件,该文件位于扩展包中。想法?

1 个答案:

答案 0 :(得分:0)

找到解决方案:要访问扩展程序包中的.html文件,请使用以下

var credentialWindow = window.open("ms-browser-extension://[id of extension]/[name of html file].html", "[name your popup window]", "width=[some num],height=[some num]");