What variables are available in the extension area (e.g. window, gBrowser)?

I am aware of window, gBrowser, gContextMenuand some others, but what global variables are available for Firefox extensions?

+3
source share
1 answer

Open the JS shell in Extension Developer . Click enumerateWindows()and then chrome://browser/content/browser.xul. Then enter props(window)to see all global variables (since global variables in JavaScript are really just properties window. However, note that there have been some reports about Extension Developer causing strange things in Firefox 4.

+3
source

All Articles