Edit Text On Any page

Allows you to edit the text on any webpage as if it were an editable document.

Installation:

Drag this button to your bookmarks bar:

Source Code:

javascript:(function() {
  try {
    document.body.contentEditable = 'true';
    document.designMode = 'on';
    alert('Page is now editable!');
  } catch (e) {
    alert('Failed to make page editable: ' + e.message);
  }
})();