Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 3 down vote accepted

You can access document and therefore document.cookie via a content script; for more on working with content scripts, see the documentation:

https://addons.mozilla.org/en-US/developers/docs/sdk/1.3/dev-guide/addon-development/web-content.html

Edit: here's a simple example that allows you to fetch cookie data for the current tab into the addon's main code:

https://builder.addons.mozilla.org/addon/1030007/latest/

share|improve this answer
1  
These links are broken now. – BGM Dec 1 '12 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.