标签: javascript firefox google-chrome firefox-addon google-chrome-extension
我想知道Chrome API对Chrome API的等效调用是什么?
var browser = gBrowser.getBrowserForDocument(doc);
答案 0 :(得分:1)
没有相应的东西。 API不同。例如,如果您想要历史记录,则需要使用chrome.history module。如果要控制在哪些选项卡中加载哪些页面,则需要使用chrome.tabs module,依此类推。
chrome.history
chrome.tabs
developer's guide中涵盖了各种扩展功能。