NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GT-fix // @version 0.2 // @description Replace line breaks with p elements so google translate wont screw up the format // @author mwalcott3 // @include *://*.qidian.com/* // @include *://*.17k.com/* // @include *://*.17k.com/* // @include *://*.uukanshu.net/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; [...document.getElementsByTagName('br')].forEach((e) => e.replaceWith(document.createElement("p")));