FC2

FC2fuzhu

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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>'
        ;

    }
})();