Reputation: 90
I have developed a firefox add-on. It is running fine in normal mode, but it is not running while in private browsing.
Does Firefox support addons in private browsing-mode? If yes, then how can i allow it to work in private-browsing mode?
Upvotes: 4
Views: 9281
Reputation: 38147
If this is made using the Add-On SDK, you need to add the line
"permissions": {"private-browsing": true},
to your package.json
file. (see also the private-browsing module in Add-On SDK)
Upvotes: 6