NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name XNXX Stories made readable // @namespace com.klondike42.userscripts // @description XNXX Stories made readable // @include http://www.sexstories.com/story/* // @grant none // @version 1 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== var body = $("body"); var storyCells = $("#story_center_panel > div"); var story = ""; for(var i = 0; i < storyCells.length; i++) { story += $(storyCells[i]).html(); } var container = $("body"); body.css("background-color", "#f3edc8"); container.empty(); container.css("text-align", "left"); container.css("color", "#eeeeee"); container.css("font-family", "serif"); container.css("font-size", "20px"); container.css("background-color", "#333333"); container.css("width", "1000px"); container.css("margin-left", "auto"); container.css("margin-right", "auto"); container.html(story);