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
1 Answer
Reset to default 10You 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.