在我的 background.js 中,我使用以下代码让我的 pageAction 扩展显示在 Amazon.com 上
function checkForValidUrl(tabId, changeInfo, tab) {
if (tab.url.indexOf('amazon.com') > -1) {
chrome.pageAction.show(tabId)
chrome.pageAction.onClicked.addListener(function(tab) {
chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"})
});
}
};
chrome.tabs.onUpdated.addListener(checkForValidUrl);
我将如何更改代码以便扩展将显示在 amazon.com 和 google.com 页面上?
谢谢。