Chrome扩展程序的应用页面

时间:2015-02-14 08:49:06

标签: google-chrome google-chrome-extension

我正在为chrome(提醒扩展程序)编写扩展程序,我想在单独的选项卡中列出用户添加的所有提醒。我该怎么做? 目前,我已经设计了弹出窗体。

我是否需要编写应用而不是扩展名?

1 个答案:

答案 0 :(得分:2)

您可以使用Chrome API打开包含随扩展程序打包的HTML文件的标签:

chrome.tabs.create({
  url: chrome.runtime.getURL("mypage.html")
});

该页面可以使用您的扩展程序可以使用的所有Chrome API。请注意,"tabs"

不需要tabs.create权限

有关详细信息,请参阅tabs documentation

P.S。如果您想获得类似应用的体验,可以create a popup-type window

chrome.windows.create({
  url: chrome.runtime.getURL("mypage.html"),
  type: "popup"
});