JAVLibrary link for OneJav

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
        }
    }
})();