私は Google 拡張コードに取り組んでおり、イベントをリッスンしようとしていますchrome.webNavigation.onTabReplaced
が、onTabReplaced
イベントが発生することはありません。
Chrome バージョン 30.0.1587.2 Canary (Windows 7) を使用しています。
これが私のマニフェストファイルの外観です。どんな助けでも大歓迎です。
マニフェスト.json:
{
"manifest_version": 2,
"name": "abcdef",
"description": "abcdef",
"version": "0.1",
"permissions": [
"tabs",
"webNavigation",
"background",
"storage",
"<all_urls>"
],
"background": {
"scripts": ["bg.js"]
}
}
bg.js:
chrome.webNavigation.onTabReplaced.addListener(function (details) {
// This event is not working in chrome.
console.log('webNavigation.onTabReplaced-- old tab id: ' +details.replacedTabId +' new Tab Id ' + details.tabId);
});