Changes between Version 6 and Version 7 of I2P_Browser_develop_n_hacks
- Timestamp:
- Jun 10, 2019 4:50:13 PM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
I2P_Browser_develop_n_hacks
v6 v7 73 73 To read more about all the different notifications a observer can receive please check out [https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Observer_Notifications Observer Notifications at Mozilla wiki]. 74 74 75 Another common problem I want to document and bring up is preferences. Since we use them heavily, most likely you would need to deal with them as you're hacking on the browser. Here is a quick and clean read example: 76 77 {{{ 78 Cu.import("resource://gre/modules/Services.jsm", this); 79 let accepted = Services.prefs.getBoolPref("toolkit.asyncshutdown.testing", false); 80 }}} 75 81 76 82