我在网上商店有一个chrome扩展程序。我想从我的扩展程序中阅读针对我的扩展程序的评论。我尝试将.js页面注入我的扩展程序的审核页面,但是我收到错误“Tab已关闭”。 这是我的代码:
var popup=window.open("https://chrome.google.com/webstore/detail/convergehub-lead-generato/mjcffemmfdpcjekgonelgmphacdhhbod/reviews");
chrome.tabs.getSelected( null, function( tab ) {
chrome.tabs.executeScript( tab.id, { file: "./lib/reviews.js", runAt: "document_end" }, function() {
if (chrome.runtime.lastError) {
alert(chrome.runtime.lastError.message);
}
});
});
在我的reviews.js中只有一行 警报( “这里”);
在上面的代码中,我总是收到警告“Tab已关闭”。有没有其他方式来获得评论?我在这里做错了吗?这甚至是在网店页面上允许的吗?