My chrome extension load content script according to this manifest:
"matches" : [ "<all_urls>" ],
"js" : ["scripts/namespace/namespace.js",
"scripts/log/Logger.js"]
"run_at" : "document_start",
"all_frames" : true
When I click a link and open a popup window which contains a calendar, content script fails to load in this window.
the window url is about:blank.
Is there any way to handle this?