Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @id exhentai.org-c5e3fcf9-ef12-4079-a201-d1b750e87520@sanitysama
- // @name G.E-Hentai Archive Download Links on Exhentai Galleries
- // @version 1.3
- // @description Adds an g.e-hentai gallery link on exhentai.
- // @include *://exhentai.org/g/*/*/
- // @include *://e-hentai.org/g/*/*/
- // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
- // @run-at document-end
- // ==/UserScript==
- function relink(place){
- var a = $(place);
- var c = a.attr("onclick").split("\'");
- a.removeAttr("onclick");
- a.attr("href", c[1]);
- }
- if(document.URL.indexOf("exhentai.org/g/") >= 0){
- var go = document.getElementsByClassName("g2")[0];
- var pa = document.createElement('p');
- pa.setAttribute('style','padding: 0 0 9px');
- pa.setAttribute('id','goto');
- $(go).after(pa);
- var im = document.createElement('img');
- im.setAttribute('src','https://exhentai.org/img/mr.gif');
- $("#goto").append(im);
- $(im).after(" ");
- var ah = document.URL.substring(10);
- var glink = document.createElement('a');
- glink.setAttribute('href', "http://e-" + ah);
- glink.setAttribute('id', "glink");
- glink.setAttribute('style', "font-weight: bold;text-decoration: none;");
- tn = document.createTextNode('Go to e-hentai.org');
- glink.appendChild(tn);
- $("#goto").append(glink);
- relink('#gd5 > .g3 + .g2 > a');
- relink('#gd5 > .g3 + .g2 + #goto + .g2 > a');
- }
- if(document.URL.indexOf("e-hentai.org/g/") >= 0){
- relink('#gd5 > .g3 + .g2 > a');
- relink('#gd5 > .g3 + .g2 + .g2 > a');
- }
Add Comment
Please, Sign In to add comment