We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

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 ŋuɖoɖowo
  • 2 masɔmasɔ sia le wosi
  • 8 views
  • Nuɖoɖo mlɔetɔ 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

Ŋuɖoɖo si wotia

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/

Xle ŋuɖoɖo sia le goya me 👍 2

All Replies (2)

more options

Ɖɔɖɔɖo si wotia

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