JAVLibrary link for OneJav

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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