Difference between revisions of "User:One-Six/fullpagename.js"
m (change to function) |
m |
||
Line 1: | Line 1: | ||
+ | console.log("User:One-Six/fullpagename.js is loaded"); | ||
const hrefFullPageNamee = () => { | const hrefFullPageNamee = () => { | ||
let fullPageNamee = window.location.href.replace(/http(s|):\/\/en.moegirl.org\//,""); | let fullPageNamee = window.location.href.replace(/http(s|):\/\/en.moegirl.org\//,""); |
Revision as of 07:51, 28 June 2020
console.log("User:One-Six/fullpagename.js is loaded"); const hrefFullPageNamee = () => { let fullPageNamee = window.location.href.replace(/http(s|):\/\/en.moegirl.org\//,""); if(/index\.php/g.test(fullPageNamee)) { let array = [...fullPageNamee.matchAll(/title=(.+?)(?:&|$)/g)]; fullPageNamee = array[array.length - 1][1]; } return fullPageNamee.replace(/#.+$/,""); //console.log("FULLPAGENAME:"+fullPageNamee); };