NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name script
// @description ES6 script
// @author s
// @version 0.0.1
// @match http://www.eroticage.net
// @grant none
// @run-at document-end
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.js
// @require https://rawgit.com/spiralx/653f2226b08167e4aaf8/raw/e830ed1ff2202102b91eb326f7826613ae9070ed/urijs-all.js
// @license MIT
// ==/UserScript==
/* jshint asi: true, esnext: true, -W097 */
(function ($) {
'use strict'
const title = document.getElementsByTagName('title').item(1).innerText.trim().replace(/\n/, '').replace(/\s\|.*$/m, '');
document.getElementsByTagName('title').item(0).innerText = title;
}).bind(this)(jQuery)
jQuery.noConflict()