Greasy Fork

Greasy Fork is available in English.

CSGO交易平台卖家查询

Igxe C5game自售卖家查询

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         CSGO交易平台卖家查询
// @namespace    http://www.lupohan.com/
// @version      1.1
// @description  Igxe C5game自售卖家查询
// @author       lupohan44
// @match        *://www.igxe.cn/product-*
// @match        *://www.c5game.com/csgo/**
// @grant        none

// ==/UserScript==

(function() {
    $(document).ready(function(){
        start();
    });
})();
var timeoutId;
var done=false;
function start(){
    if(window.location.href.indexOf("c5game") != -1){
        //c5
        timeoutId = setInterval(function(){
            c5game();
        } ,2000);
    }else{
        //IGXE
        timeoutId = setInterval(function(){
            igxe();
        } ,200);
    }
}
function igxe(){
    var inspecturl = $('#center > div:nth-child(10) > div > div > div.mod-equipmentDetail-hd > div > div.opera-box > a:nth-child(1)').attr('href');
    if(inspecturl.indexOf(' ') > 0){
        inspecturl = encodeURI(inspecturl);
    }
    var needle = 'csgo_econ_action_preview%20';
    inspecturl = inspecturl.substring(inspecturl.indexOf(needle)+needle.length);
    var splitArr = inspecturl.split('A');
    var stid = splitArr[0].replace('S','');
    console.log(stid);
    $('#center > div:nth-child(10) > div > div > div.mod-equipmentDetail-hd > div > div.opera-box').append('<a href="https://steamcommunity.com/profiles/'+ stid + '" target="_blank" one-link-mark="yes" style="width:40px">卖家</a>');
    clearTimeout(timeoutId);
}
function c5game(){
    /*
    $('#J_SellTpl > tr.j_SaleItem').each(function(){
        var inspecturl = $(this).find('td:nth-child(1) > div:nth-child(2) > a').attr('href');
        if(inspecturl.indexOf(' ') > 0){
            inspecturl = encodeURI(inspecturl);
        }
        var needle = 'csgo_econ_action_preview%20';
        inspecturl = inspecturl.substring(inspecturl.indexOf(needle)+needle.length);
        var splitArr = inspecturl.split('A');
        var stid = splitArr[0].replace('S','');
        //console.log(stid);
        $(this).find('td:nth-child(1) > div:nth-child(2)').append('<a style="cursor: pointer" class="media-middle ft-inter ft-12 mr-5" target="_blank" href="https://steamcommunity.com/profiles/'+ stid + '">卖家</a>');
        done=true;
    })
    if(done){
        clearTimeout(timeoutId);
    }
    */
    clearTimeout(timeoutId);
    //Cannot be used now
}