FC2

FC2fuzhu

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         FC2
// @namespace    http://tampermonkey.net/
// @version      2024-02-22
// @description  FC2fuzhu
// @author       You
// @match        https://adult.contents.fc2.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fc2.com
// @require      https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    //JS 取右字符函数
    function jsright(obj,str){
        var index = obj.indexOf(str);
        obj = obj.substring(index + 1,obj.length);
        return obj;
    }
    var i,urlstr,str,addstr;
    var getclass=jQuery('.c-cntCard-110-f_thumb a');
    for(i=0;i<getclass.length;i++)
    {
        console.log(i);
        urlstr=getclass[i].href;
        console.log(urlstr);
        str =jsright(urlstr, '=');
        console.log(str);
        jQuery('.c-cntCard-110-f_price')[i].innerHTML= jQuery('.c-cntCard-110-f_price')[i].innerHTML+' <a href="https://btsow.motorcycles/search/'+str+'" target="_blank">search</a>'
        ;

    }
})();