I want to get active window's cookie information in an extension built with the Add-on SDK. How can I do this? I couldn't find any method in documentation that has access to window or document. Also in some forums, folks talk about there is no way to access to them. Is it really not possible still?
You can access document and therefore document.cookie via a content script; for more on working with content scripts, see the documentation:
Edit: here's a simple example that allows you to fetch cookie data for the current tab into the addon's main code: