├── .gitignore ├── README.md ├── extension ├── .distignore ├── CHANGELOG.md ├── chrome.manifest ├── chrome │ ├── content │ │ ├── browserOverlay.xul │ │ ├── firebugOverlay.xul │ │ ├── lib │ │ │ ├── console.css │ │ │ ├── firephp.js │ │ │ ├── lib.js │ │ │ ├── renderer.js │ │ │ ├── reps.js │ │ │ ├── viewer.js │ │ │ └── wildfire.js │ │ ├── main.js │ │ ├── mainOverlay.js │ │ └── viewer │ │ │ ├── md5.js │ │ │ ├── panel.css │ │ │ ├── panel.htm │ │ │ └── panel.js │ └── skin │ │ └── classic │ │ ├── FirePHP_16.png │ │ ├── FirePHP_24.png │ │ ├── FirePHP_32.png │ │ ├── MenuHQIcon.png │ │ ├── MenubarLogo1.png │ │ ├── ObjectMemberVisibilityIcons.png │ │ ├── firephp.css │ │ ├── firephpMenu.png │ │ ├── firephpMenuHover.png │ │ ├── firephpMenuOpen.png │ │ ├── group.png │ │ ├── spacer.gif │ │ ├── tableIcon.png │ │ └── traceIcon.png ├── defaults │ └── preferences │ │ └── firephp.js ├── install.rdf └── package.json ├── package.json └── workspace ├── .gitignore ├── Makefile ├── README.md ├── etc └── update.tpl.rdf ├── package.json ├── scripts ├── build.js ├── publish.js └── run.js ├── server.js ├── ui ├── app.js └── style.css └── views ├── index.hbs └── layout.hbs /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **DEPRECATED: For new Firefox Web Extension see https://github.com/firephp/firephp-for-browser-devtools** 2 | 3 | --- 4 | 5 | 6 | FirePHP Firefox Extension 7 | ========================= 8 | 9 | This project contains the [FirePHP](http://www.firephp.org/) Firefox Extension hosted at: 10 | [https://addons.mozilla.org/en-US/firefox/addon/firephp/](https://addons.mozilla.org/en-US/firefox/addon/firephp/) 11 | 12 | For information about this extension see: 13 | [http://docs.sourcemint.org/firephp.org/firephp/1/-docs/Clients#firephp](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/Clients#firephp) 14 | 15 | For documentation on how to use FirePHP see: 16 | [http://docs.sourcemint.org/firephp.org/firephp/1/-docs/Welcome](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/Welcome) 17 | 18 | 19 | Install 20 | ======= 21 | 22 | Requirements: 23 | 24 | * Firefox 5+ 25 | * [Firebug 1.9+](http://getfirebug.com/downloads) 26 | 27 | Official Release: [https://addons.mozilla.org/en-US/firefox/addon/firephp/](https://addons.mozilla.org/en-US/firefox/addon/firephp/) 28 | 29 | To install extension in source form, clone this repository and link the `../extension` folder into your 30 | Firefox profile at: `/extensions/FirePHPExtension-Build@firephp.org` 31 | 32 | 33 | Links 34 | ===== 35 | 36 | * [MDN: Setting up an extension development environment](https://developer.mozilla.org/en/setting_up_extension_development_environment) 37 | 38 | 39 | Support & Feedback 40 | ================== 41 | 42 | See: [http://docs.sourcemint.org/firephp.org/firephp/1/-docs/OpenSource#support](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/OpenSource#support) 43 | 44 | 45 | Contribute 46 | ========== 47 | 48 | See: [http://docs.sourcemint.org/firephp.org/firephp/1/-docs/OpenSource#contribute](http://docs.sourcemint.org/firephp.org/firephp/1/-docs/OpenSource#contribute) 49 | 50 | 51 | Author 52 | ====== 53 | 54 | This project is maintained by [Christoph Dorn](http://www.christophdorn.com/). 55 | 56 | 57 | Documentation License 58 | ===================== 59 | 60 | [Creative Commons Attribution-NonCommercial-ShareAlike 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/) 61 | 62 | Copyright (c) 2006+ [Christoph Dorn](http://www.christophdorn.com/) 63 | 64 | 65 | Code License 66 | ============ 67 | 68 | [MIT License](http://www.opensource.org/licenses/mit-license.php) 69 | 70 | Copyright (c) 2006+ [Christoph Dorn](http://www.christophdorn.com/) 71 | 72 | Permission is hereby granted, free of charge, to any person obtaining a copy 73 | of this software and associated documentation files (the "Software"), to deal 74 | in the Software without restriction, including without limitation the rights 75 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 76 | copies of the Software, and to permit persons to whom the Software is 77 | furnished to do so, subject to the following conditions: 78 | 79 | The above copyright notice and this permission notice shall be included in 80 | all copies or substantial portions of the Software. 81 | 82 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 83 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 84 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 85 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 86 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 87 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 88 | THE SOFTWARE. 89 | -------------------------------------------------------------------------------- /extension/.distignore: -------------------------------------------------------------------------------- 1 | .* 2 | /package.json -------------------------------------------------------------------------------- /extension/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | 2013-09-03 - Release Version: 0.7.4 3 | 2013-09-03 - Release Version: 0.7.3 4 | 5 | - (Issue 10) [Tables broken since Firebug 1.12](https://github.com/firephp/firephp-extension/issues/10) 6 | 7 | 2013-04-11 - Release Version: 0.7.2 8 | 9 | - Security fix for: http://www.exploit-db.com/exploits/24961/ 10 | 11 | 2012-04-02 - Release Version: 0.7.1 12 | 13 | - (Issue 3) [FirePHP 'No Modify Agent' not working](https://github.com/firephp/firephp-extension/issues/3) 14 | 15 | 2012-01-27 - Release Version: 0.7.0 16 | 2012-01-24 - Release Version: 0.7.0rc5 17 | 18 | - (Issue 185) FirePHP does not store it's enabled status (0.7.0rc2) 19 | 20 | 2012-01-23 - Release Version: 0.7.0rc4 21 | 22 | - (Issue 185) FirePHP does not store it's enabled status (0.7.0rc2) 23 | 24 | 2012-01-18 - Release Version: 0.7.0rc3 25 | 26 | - (Issue 185) FirePHP does not store it's enabled status (0.7.0rc2) 27 | 28 | 2012-01-05 - Release Version: 0.7.0rc2 29 | 30 | - Page messages logging fix 31 | 32 | 2012-01-05 - Release Version: 0.7.0rc1 33 | 34 | - Firebug console stylesheet registration fix 35 | - (Issue 182)Group Collapsed drop FireBug error (removeClass() fix) 36 | 37 | 2011-12-08 - Release Version: 0.7.0b1 38 | 39 | - Set browser min version to `8.*` 40 | - Set browser max version to `10.*` 41 | - Set Firebug min version to `1.9` 42 | - (Issue 180) Complete refactoring into AMD modules 43 | - FBTrace based debugging 44 | - Enable on first load if Firebug enabled 45 | 46 | 2011-08-17 - Release Version: 0.6.2 47 | 48 | - Set browser version from `5.0` to `8.*` 49 | - (Issue 174) Erroneous Firebug version check gives warning and disabled FirePHP 50 | - Refactored project to use PINF to manage development workspace 51 | 52 | 2011-08-11 - Release Version: 0.6.1 53 | 2011-08-03 - Release Version: 0.6.0 54 | 55 | - Fixes for Firebug 1.8 56 | 57 | 2011-07-14 - Release Version: 0.5.0 58 | 59 | - Set max Firefox version to 7 60 | 61 | 2010-10-26 - Release Version: 0.5.0 62 | 63 | 2010-10-08 - Release Version: 0.5rc1 64 | 65 | 2010-10-08 - Release Version: 0.4.4rc3 66 | 67 | - Bugfix to ignore unknown protocol headers 68 | - (Issue 152) Enhancement: Support for Firefox 4 & Firebug 1.7 [18m] 69 | - Link for upgrade message if FirePHP 1.0 used on server 70 | - Send x-insight request header for FirePHP 1.0 compatibility 71 | 72 | 2010-07-19 - Release Version: 0.4.4rc2 73 | 74 | - (Issue 141) Advanced grouping bug 75 | - (Issue 57) Duplicate console output 76 | - (Issue 136) Firebug 1.5X.0 Final won't show FirePHP's console output on first run 77 | - (Issue 144) firebug 1.6X.0a10 78 | - Link to twitter in menu & notification on upgrade 79 | 80 | 2010-03-05 - Release Version: 0.4.4rc1 81 | 82 | - (Issue 135) FirePHP 0.4.3 with Firebug 1.5 changes user agent on the fly 83 | - (Issue 138) Redirect "dump" to "log" in extension 84 | - (Issue 137) Remove advertised support for Firefox 3.0 on FirePHP 0.4.x branch 85 | - Firebug 1.6+ compatibility 86 | - Firefox 3.5 and Firebug 1.5 required at minimum 87 | - Removed Server tab in Net panel requests 88 | - Firebug compatibility notifications 89 | - Notification to remind about enabling net panel 90 | - Option to not modify user-agent 91 | - Option to show variable viewer on click 92 | - Added FAQs link to menus 93 | - Removed "Allowed Sites" 94 | 95 | 2009-12-05 - Release Version: 0.4.3 96 | 97 | - Removed use of eval() which resulted in the removal of the custom request processor and renderer features 98 | 99 | 2009-11-17 - Release Version: 0.4.2 100 | 101 | - (Issue 124) FirePHP 0.3.1 not working with Firebug 1.4.2+ 102 | - (Issue 126) FirePHP 0.3.1 does not work with Firebug 1.5a21 103 | 104 | 2009-06-13 - Release Version: 0.3.1 105 | 106 | - (Issue 110) No console logging in iceweasel 3.0.6 with firebug 1.3.3. 107 | 108 | 2009-05-11 - Release Version: 0.3 109 | 2009-05-01 - Release Version: 0.3.rc.1 110 | 111 | - (Issue 104) FirePHP doesn't play nice with User Agent Switcher 112 | - (Issue 80) Auto/Pre collapsing groups AND Custom group row colors 113 | - (Issue 94) Console not working with Firebug 1.4a13" 114 | 115 | 2009-02-12 - Release Version: 0.2.4 116 | 117 | - (Issue 88) FirePHP does not work with Firebug 1.4 118 | - (Issue 86) File and Line info does not show when firebug is running in window 119 | - Added donation menu item 120 | 121 | 2008-10-23 - Release Version: 0.2.1 122 | 123 | - Bugfix to allow data headers in any order 124 | - Added support for Firebug 1.3 125 | 126 | 2008-10-20 - Release Version: 0.2.0 127 | 128 | - Updated version to 0.2.0 129 | - Skip X-Wf-1-Index header for now 130 | 131 | 2008-10-16 - Release Version: 0.2.b.4 132 | 133 | - (Issue 37) Display file and line information for each log message 134 | 135 | 2008-10-14 - Release Version: 0.2.b.3 136 | 137 | - Updated JsonStream wildfire protocol to be more robust 138 | - (Issue 47) Error in plugin - problem with large object graphs 139 | - Updated min requirement for FirePHPCore library to 0.2.0 140 | - Added style to notices in variable renderer 141 | 142 | 2008-10-07 - Release Version: 0.2.b.2 143 | 144 | - Added private/protected/public/undeclared/static visibility indicators to objects in variable viewer 145 | - (Issue 28) Need solution for logging private and protected object variables 146 | - (Issue 42) TRACE and EXCEPTION not working on windows servers 147 | - Bugfix in Wildfire JsonProtocol handler to allow Index message in any position 148 | 149 | 2008-10-01 - Release Version: 0.2.b.1 150 | 151 | - Added support for displaying ErrorExceptions raised by trigger_error() 152 | - (Issue 25) Wrong order in FireBug Console 153 | - Removed dependency on jQuery for Ajax requests 154 | - Added info message with link in console when server library is not latest available 155 | - Added detection and recording of server wildfire plugin version 156 | - Fix for Wildfire JsonStream to allow Wf-*-Index header to be sent in any position 157 | - Fix for TABLE logging style to allow table label in meta.label as well as data[0] 158 | - (Issue 31) Log messages with labels reproduced as Array(2) in firebug console 159 | - Added support for console groups 160 | - Added support for message labels when using the wildfire protocol 161 | - Added resizing links to variable viewer overlay and persist last size in preferences 162 | - (Issue 11) Variable inspection for arrays logged to console 163 | - (Issue 30) Allow explicit wrapping of logging data 164 | - Major work on new variable renderers for console 165 | - (Issue 16) Escape HTML in variable values 166 | - Capitalized FALSE, TRUE, NULL in variable renderer overlay 167 | - Changed variable renderer in overlay to use nested DIV's instead of whitespace for indentation 168 | - Updated link to discussion group/forum 169 | 170 | 2008-08-25 - Release Version: 0.1.2 171 | 2008-08-24 - Release Version: 0.1.1.2 172 | 173 | - (Issue 15) FirePHP does not display messages in the console with latest version of Firebug 174 | - (Issue 10) Prevent "not well-formed error" in JS console when loading processor and renderer 175 | - (Issue 14) Updated wildfire protocol to wrap header message values with "|" 176 | - Updated Net panel override to make it consistent with latest changes in fb 1.2 177 | 178 | 2008-07-31 - Release Version: 0.1.1.1 179 | 2008-07-31 - Release Version: 0.1.1 180 | 181 | - Nothing changed 182 | 183 | 2008-07-30 - Release Version: 0.1.0.8 184 | 185 | - Bugfix - CSS style not added when FirePHP first loads 186 | - Updated rendering of null, false and true in Variable Viewer 187 | 188 | 2008-07-30 - Release Version: 0.1.0.7 189 | 190 | - Display object class name if __className key found in data 191 | - Bugfix - Display null values properly in variable inspector 192 | - Bugfix - Show dumped variables in "Server" request tab if using wildfire 193 | - Bugfix - FF3 - Messages not showing in console when Firebug is detached 194 | - Bugfix - Fix loading of custom processors and renderers 195 | 196 | 2008-07-23 - Release Version: 0.1.0.5 197 | 198 | - Updated plugin URI for FirePHP Wildfire plugin 199 | 200 | 2008-07-22 - Release Version: 0.1.0.4 201 | 202 | - Bugfix - Gray background for variable viewer on windows 203 | - Added icon for FirePHP Headquarters link in FirePHP menu and updated style 204 | - Bugfix - Trace and exception logging broke when function/method argument was "false" or "null" 205 | 206 | 2008-07-17 - Release Version: 0.1.0.3 207 | 208 | - Minor bugfix in request processor 209 | - Added support for the wildfire JsonStream protocol to communicate with the Zend Framework component 210 | 211 | 2008-07-13 - Release Version: 0.1.0.2 212 | 213 | - Added X-FirePHP-Agent request header when visiting FirePHP related sites 214 | - Launch Welcome page once every time FirePHP is upgraded 215 | - Added link to welcome page in menus 216 | - Added links to important sites to menu 217 | - Added ability to enable and disable FirePHP from menu 218 | - Added FirePHP menu next to Firebug menu in Firebug UI 219 | - Updated FirePHP::TABLE to use new variable viewer for array/object values 220 | - Added variable viewer overlay 221 | - Bugfix - FF3 - Logging of events when Firebug is running in its own window 222 | - Bugfix - Improved custom stylesheet inclusion 223 | - FF3 - Updated request monitoring to use Firebug onLoad listener 224 | - Updated logo 225 | 226 | 2008-06-16 - Release Version: 0.1.0.1 227 | 228 | - Added support for FirePHP::TRACE log style 229 | - Updated background and font for FirePHP request group titles 230 | 231 | 2008-06-13 - Release Version: 0.1.0 232 | 233 | - Cleaned up code a bit 234 | - Removed debug print statements 235 | - Updated Firefox support version to 3.0.* 236 | - Updated license of the extension to the new BSD license 237 | 238 | 2008-06-07 - Release Version: 0.0.6.23 239 | 240 | - Bugfix - Moved jQuery to a namespace under FirePHPLib to avoid namespace conflicts with other extensions 241 | 242 | 2008-06-06 - Release Version: 0.0.6.22 243 | 244 | - Bugfix - FF2 - Only send FirePHP user-agent header when Firebug is enabled 245 | - Bugfix - FF3 - Only send FirePHP user-agent header when Firebug Net Panel is enabled 246 | - Added support for FirePHP::TABLE log style 247 | 248 | 2008-05-28 - Release Version: 0.0.6.20 249 | 250 | - Bugfix - FF3 - Call request processor on main page load 251 | - Bugfix - Display of POST parameters in Post tab of request inspector 252 | - Bugfix - Display of POST response in Response tab of request inspector 253 | - Bugfix - Escape all HTML chracters rendered in Server tab of request inspector 254 | 255 | 2008-05-15 - Release Version: 0.0.6.19 256 | 257 | - Bugfix - Expanding requests for Firebug 1.2 258 | 259 | 2008-05-15 - Release Version: 0.0.6.18 260 | 261 | - Added support for Firebug 1.2 262 | 263 | 2008-05-15 - Release Version: 0.0.6.17 264 | 265 | - Bugfix - Ensure custom log templates and stylesheets are added correctly at all times 266 | 267 | 2008-05-14 - Release Version: 0.0.6.16 268 | 269 | - Bugfix - Monitor page loading and trigger request processor for main page and iframes 270 | - Changed API of Request processor to receive URL and Data as method arguments 271 | - Bugfix - Display correct URL for console message groups 272 | 273 | 2008-05-09 - Release Version: 0.0.6.15 274 | 275 | - Updated default processor to render exception stacks without wrapping the filenames 276 | - Added updateKey to install.rdf 277 | - Updated browser version to support FF3 278 | - Removed component used to add to User-Agent request header as we can do this directly via httpChannel 279 | - Removed ?t=xxx from custom processor URL's 280 | 281 | 2008-04-16 - Release Version: 0.0.6.14 282 | 283 | - Bugfix - Re-initialize processor when console panel is not found 284 | - Bugfix - Add custom stylesheet to console panel on showPanel() 285 | 286 | 2008-04-16 - Release Version: 0.0.6.10 287 | 288 | - Added feature to allow custom processors to define their own logging templates 289 | - Moved trace logging template into default processor 290 | 291 | 2008-04-13 - Release Version: 0.0.6.9 292 | 293 | - Implemented full PHP stack trace logging with variable inspection for fb.php 294 | 295 | 2008-04-12 - Release Version: 0.0.6.8 296 | 297 | - Bugfix - Parsing of header data in old format 298 | - Bugfix - Adding and removing of FirePHP/X.X.X in User-Agent request header 299 | 300 | 2008-04-11 - Release Version: 0.0.6.7 301 | 302 | - New FirePHP client in form of jQuery plugin to be used in Jaxer server environment 303 | - Bugfix - Console logging with different tabs and windows open and detached firebug window 304 | - Updated custom code loading verification to allow different hosts for renderer and processor URL's 305 | 306 | 2008-04-09 - Release Version: 0.0.6.6 307 | 308 | - Enabled loading of custom renderers and processors from third part hosts if explicitly allowed by user 309 | 310 | 2008-04-09 - Release Version: 0.0.6.5 311 | 312 | - Bugfix for Firebug version 1.05 313 | 314 | 2008-04-09 - Release Version: 0.0.6.4 315 | 316 | - Updated security model to allow default renderer and processor without explicit action by user 317 | - Change json data parsing from eval() to json_parse() 318 | - Misc bug fixes to improve reliability 319 | - Updated default renderer for server tab 320 | - Updated data parsing and default renderer and processor to work with new fb() PHP function 321 | - Implemented sorting of data headers based on numeric index 322 | - The default processor will now fail gracefully if there is a problem logging the data 323 | - The log mode string for console messages in the default processor is now case-insensitive 324 | 325 | 2008-04-07 - Release Version: 0.0.6.3 326 | 327 | - Implemented request processor that is called for every request in the background 328 | - Renamed headers to start with X-... 329 | - Added support for Firebug 1.1 (based on 1.1.0b12) 330 | - Added current FirePHP version and OS info to update URL 331 | 332 | 2007-12-07 - Release Version: 0.0.5.26 333 | 334 | - Finished full jQuery support for renderer 335 | - Bugfix to make FirePHP work when Firebug is detached in its own window 336 | 337 | 2007-12-05 - Release Version: 0.0.5.24 338 | 339 | - Fixed incompatibility with HTML Validator extension: http://users.skynet.be/mgueury/mozilla/ 340 | - Fixed unique renderer key to allow request scoping in generated HTML for Console and Net panels 341 | - Bugfix to make FirePHP work in Console panel with Ajax requests 342 | 343 | 2007-12-04 - Release Version: 0.0.5.23 344 | 345 | - Implemented explicit enable for each host and allowed sites menu & dialog 346 | - Only send FirePHP accept and user agent headers when firebug is enabled 347 | - Changed header name from FirePHP-Mask to FirePHP-RendererURL 348 | - Added support for javascript in the rendered HTML 349 | 350 | 2007-11-26 - Release Version: 0.0.5.22 351 | 352 | - Updated to ignore case of header names 353 | - Implemented data rendering in Server tab where data is fetched from response headers 354 | - Added "Server" tab to Firebug's Net panel requests 355 | - Abandoned previous idea in favor of simplicity 356 | 357 | ---------- REBOOT ---------- 358 | 359 | - Changed PINF-org.firephp-* headers to X-PINF-org.firephp-* 360 | - Updated UI design 361 | - Added variable inspector and viewer 362 | - Added console viewer 363 | - Added support for platform-specific CSS and added Mac look 364 | - Introduced versioning for the FirePHP XML protocol and set to 0.2 365 | - Added a FirePHPChannel object to the content windows that can be 366 | used to communicate with/via FirePHP 367 | - Added event/listener based communication of all components via FirePHPChannel 368 | - Revised format of capabilities definition 369 | - Revised how capability definitions are loaded 370 | - Added support to allow and block capability definition loading for hosts 371 | - Implemented support for build version 372 | - Added FirePHP/x.x.x to User-Agent Request header 373 | - Implemented fetching of intelligence data from X-PINF-org.firephp-Data header 374 | - Fixed bug to display application ID if label is not found 375 | - Fixed variable list loading 376 | - Fixed variable selection and display 377 | - Implemented basic javascript array renderer 378 | - Implemented SESSION variables list 379 | 380 | 2007-02-02 - Release Version: 0.0.5 381 | 382 | - Wrapped add progress listener into try/catch to prevent some console warnings 383 | - Removed debug dump statements 384 | 385 | 2007-02-01 - Release Version: 0.0.4 386 | 387 | - New code structure 388 | - Lots of feature enhancements 389 | 390 | 2007-01-12 - Release Version: 0.0.3 391 | 392 | - Set defaultPanelName preference to "console" if set to 393 | "FirePHP" to prevent Firebug from failing silently when 394 | extension is removed and "FirePHP" panel is still selected. 395 | Thanks to Matthieu Honel for the suggestion. 396 | A patch has been submitted to Firebug. 397 | - Added updateURL to install.rdf 398 | 399 | 2007-01-11 400 | 401 | - Added a sidebar and button to toggle sidebar. 402 | The sidebar currently contains one listbox that lists all 403 | events fired by Firebug as they occur. This will help 404 | during development to establish a clean order of events. 405 | -------------------------------------------------------------------------------- /extension/chrome.manifest: -------------------------------------------------------------------------------- 1 | content firephp chrome/content/ 2 | skin firephp classic/1.0 chrome/skin/classic/ 3 | resource firephp chrome/ 4 | overlay chrome://browser/content/browser.xul chrome://firephp/content/browserOverlay.xul 5 | overlay chrome://firebug/content/firebugOverlay.xul chrome://firephp/content/firebugOverlay.xul 6 | -------------------------------------------------------------------------------- /extension/chrome/content/browserOverlay.xul: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 |