Click to install this script

IP Board: Add Selected Text as Quote

  • Added: October 27, 2007
  • Last Updated: October 27, 2007

File Name: ipboard_addseltextqt.user.js

Click to hide sectionDescription

I really dislike the way the "Add Reply", "More Buttons", and "Close Fast Reply" buttons shift around when the "Add Selected Text as Quote" button is added or removed. Also, the "Add Selected Text as Quote Button" didn't reliably appear/disappear for me under Netscape (which was my preferred browser, before their latest buggy releases). So this script (if you can even call it that, it's just one line) sets the "Add Selected Text as Quote" button to always be visible.

Click to hide sectionScript Source

// IP.Board: Add Selected Text as Quote Always Visible // Copyright (c) 2006-2007 Orbona // Version 1.0 // Release Date: 2007-10-22 // // See also: http://www.orbona.com/greasemonkey/ // // Original file name: ipboard_addseltextqt.user.js // Please reference the original file name when contacting me regarding this // script. // // Released under the GPL license: http://www.gnu.org/copyleft/gpl.html // //--------------------------------------------------------------------------- // DESCRIPTION // // Sets the style of the "Add Selected Text as Quote" on an Invision Power // Board (IP.Board, see http://www.invisionpower.com) button to always be // visible. I created this since the button didn't show reliably on all // my browers and operating systems. Also, I didn't like it when the other // buttons "shifted" to make room for the "Add Selected Text as Quote" // button. //--------------------------------------------------------------------------- // ==UserScript== // @name IP.Board: Add Selected Text as Quote Always Visible // @description Sets the 'Add Selected Text as Quote' button to always be visible and never hidden // @namespace http://www.orbona.com/greasemonkey/ // @include http://forums.televisionwithoutpity.com/index.php?showtopic* // @include http://www2.konfabulator.com/forums/index.php?showtopic* // ==/UserScript== window.addEventListener("load", function() { document.getElementById('fastreply-pastesel').style.display='block';}, false);