Bookmarklets tips from the Drupal developement mailing list

Quotation would be nice but I deleted them from my mail :( ... hope to edit this one some day.

== below is not by me ==

Append XDEBUG

if(document.URL.indexOf('XDEBUG_PROFILE')<1) { 
  var sep=document.URL.indexOf('?');sep = (sep<1)? '?' : '&';
  window.location.href=document.URL+sep+'XDEBUG_PROFILE';
}

Switch from dev.example.com to www.example.com

if ( /dev\./.test(location.href)){
  location.href=location.href.replace('dev.','www.');
};

And more

There are a handful of such useful freebies (including the one I did for DBG
for Chrome):

* FF easy Xdebug: https://addons.mozilla.org/en-US/firefox/addon/58688/
* FF vimxdebug: https://addons.mozilla.org/en-US/firefox/addon/181743/
* FF DBGbar: https://addons.mozilla.org/en-US/firefox/addon/3227/
* Chrome/Chromium Xdebug helper:
https://chrome.google.com/extensions/detail/eadndfjplgieldjbigjakmdgkmoa...
* Chrome/Chromium DBG helper:
https://chrome.google.com/extensions/detail/hfmakegkfgkoaeoligncjmnklkdm...

I forked Xdebug helper to scratch my own itch for a DBG version. Zend
provides similar extensions for their debugger for PDT/ZS. And any browser
extensions not mentioned are mostly covered by the IDE developer/publisher
providing such accessories directly such as for IE, etc.

I can't remember and a quick search did not turn up what I used for Xdebug
session handling under IE but I seem to recall that it was a
bookmarklet-type solution rather than a packaged add-on.

I am sure you will find the bookmarklet or easy Xdebug, Xdebug helper, or
other extension all that you need.