Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

addon firefox 22 private

  • 2 balasan
  • 2 ada masalah ini
  • 8 paparan
  • Balasan terakhir oleh ltknn

more options

I write addon myself. It work fine in private mode on FF21 but not on FF22. Any suggestion for me? code is like: //======== var timer = require('timer'); var enabledTimer = true; timer.setInterval(timer_callback,1000);

function timer_callback(){

   if (enabledTimer){
       enabledTimer = false;
       var tabs = require("sdk/tabs");
       tabs.open("http://www.example.com");
   }

} //=======

Thank you

I write addon myself. It work fine in private mode on FF21 but not on FF22. Any suggestion for me? code is like: //======== var timer = require('timer'); var enabledTimer = true; timer.setInterval(timer_callback,1000); function timer_callback(){ if (enabledTimer){ enabledTimer = false; var tabs = require("sdk/tabs"); tabs.open("http://www.example.com"); } } //======= Thank you

Penyelesaian terpilih

hello ltknn, have you used the most current sdk version in order to pack your addon?

https://blog.mozilla.org/addons/2013/02/26/per-window-private-browsing-and-the-add-on-sdk/

Baca jawapan ini dalam konteks 👍 2

All Replies (2)

more options

Penyelesaian Terpilih

hello ltknn, have you used the most current sdk version in order to pack your addon?

https://blog.mozilla.org/addons/2013/02/26/per-window-private-browsing-and-the-add-on-sdk/

more options

I repack addon and it's work. Thank you