Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What to do about Fanfiction.net?
 
#11
I found a Greasmonkey script a while ago that re-enables highlighting text.  I'd post a link, but Userscripts appears to be down, so here it is:   (I wish we had a "Code" BBCode wrapper here.)
Code:
// ==UserScript==// @name        Fanfiction.net, make text selectable again// @include     http://m.fanfiction.net/*// @include     http://m.fictionpress.com/*// @include     http://www.fanfiction.net/*// @include     http://www.fictionpress.com/*// @include     http://m.fanfiction.net/*// @include     http://m.fictionpress.com/*// @include     http://www.fanfiction.net/*// @include     http://www.fictionpress.com/*// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js// @updateURL   http://userscripts.org/scripts/source/179482.meta.js// @downloadURL http://userscripts.org/scripts/source/179482.user.js// @version     3.5// @grant       GM_addStyle// ==/UserScript==
$(".nocopy").removeClass ("nocopy");
setInterval (fixInlineStyles, 999);
function fixInlineStyles () {    $("[style*='user-select']").each ( function () {        var jThis       = $(this);        var styleAttr   = jThis.attr ("style");        styleAttr       = styleAttr.replace (/user-select:s*none/g, "user-select: text");        jThis.attr ("style", styleAttr);    } );
    unsafeWindow.jQuery(document).unbind ("keydown");}
GM_addStyle ( "                                     * {                                                 -moz-user-select: text !important;              user-select: text !important;                   -webkit-user-select: text !important;       }                                           " );
-----
Stand between the Silver Crystal and the Golden Sea.
"Youngsters these days just have no appreciation for the magnificence of the legendary cucumber."  --Krityan Elder, Tales of Vesperia.
Reply


Messages In This Thread
[No subject] - by robkelk - 06-01-2014, 01:42 PM
[No subject] - by khagler - 06-01-2014, 06:50 PM
[No subject] - by Bob Schroeck - 06-01-2014, 11:20 PM
[No subject] - by LilFluff - 06-01-2014, 11:30 PM
[No subject] - by Jinx999 - 06-02-2014, 06:59 AM
[No subject] - by Bob Schroeck - 06-02-2014, 02:25 PM
[No subject] - by Morganite - 06-02-2014, 07:02 PM
[No subject] - by ClassicDrogn - 06-03-2014, 11:59 AM
[No subject] - by Labster - 06-05-2014, 09:53 PM
[No subject] - by Jorlem - 06-06-2014, 08:13 AM
[No subject] - by Labster - 06-09-2014, 08:50 PM

Forum Jump:


Users browsing this thread: 6 Guest(s)