最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Google Chrome exstension chrome.tabs.onUpdated.addListener - Stack Overflow

programmeradmin1浏览0评论

Problem: Uncaught TypeError: Cannot read property 'onUpdated' of undefined

Google Chrome extension

My code:

main.js

I have a function getCookie and setcookie

var _a = getCookie("a");

if (_a != "") {
/// do something
} else {


chrome.tabs.onUpdated.addListener(function(tabId , info , tab) {
if (info.status == "plete") {

   var _a = document.getElementsByName('id_loaded_page')[0].value;
       setCookie("_a", value, 1);
       console.log("_a: " +_a);


   }
});

}

Problem: Uncaught TypeError: Cannot read property 'onUpdated' of undefined

Google Chrome extension

My code:

main.js

I have a function getCookie and setcookie

var _a = getCookie("a");

if (_a != "") {
/// do something
} else {


chrome.tabs.onUpdated.addListener(function(tabId , info , tab) {
if (info.status == "plete") {

   var _a = document.getElementsByName('id_loaded_page')[0].value;
       setCookie("_a", value, 1);
       console.log("_a: " +_a);


   }
});

}
Share Improve this question edited Jun 3, 2014 at 21:05 user3608126 asked Jun 3, 2014 at 20:50 user3608126user3608126 892 silver badges5 bronze badges 1
  • 1 There is no question here to begin with; and on Stack Overflow questions of the format "here's my code (code dump) it doesn't work, help" are not wele. Edit your post to contain a single, answerable question, and add a minimal example with only relevant code. Also read How to Ask guide. – Xan Commented Jun 3, 2014 at 20:57
Add a ment  | 

1 Answer 1

Reset to default 10

You are calling chrome.tabs from a Content Script.

By design, content scripts are not allowed access to most of the Chrome APIs.

You need to make a background page to access chrome.tabs, but in your particular case you don't even need that wrapper: you're injecting at "document_end", which should mean that all static DOM is already loaded

And if the DOM node you are looking for is dynamically added, it may not exist when "plete" fires for a tab. You will need to listen to DOM mutations.

发布评论

评论列表(0)

  1. 暂无评论