JAVLibrary link for OneJav

Adds a link to each OneJav post that goes to the respective jav page on JAVLibrary.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         JAVLibrary link for OneJav
// @version      0.1
// @description  Adds a link to each OneJav post that goes to the respective jav page on JAVLibrary.
// @author       Walpac
// @match        https://onejav.com/*
// @grant        none
// @namespace https://greasyfork.org/users/285116
// ==/UserScript==

(function() {
    'use strict';
    var posts = document.getElementsByClassName('card mb-3');
    var id;
    if (posts) {
        var post;
        for (var i = 0; i < posts.length; i++) {
            post = posts[i].getElementsByClassName('title is-4 is-spaced');
            id = post[0].getElementsByTagName("a").item(0).innerHTML;
            id = id.replace(/\s+/g,'');
            console.log(i + "= " + id + " size:" + id.length);

            var javLibLink = document.createElement('a');
            javLibLink.setAttribute('href', 'http://www.javlibrary.com/en/vl_searchbyid.php?keyword=' + id);
            javLibLink.setAttribute('target', '_blank');
            javLibLink.setAttribute('class', 'is-size-6');
            javLibLink.innerHTML = 'JAVLibrary';
            post[0].appendChild(javLibLink);
        }
    }
})();