KillmailExportCN

为国服KB网添加导出km功能

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         KillmailExportCN
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  为国服KB网添加导出km功能
// @author       SuzuneMaiki
// @match        *kb.ceve-market.org/kill/*
// @grant        none
// ==/UserScript==
function copyurl(url){
    var copycontent=document.createElement("p");
    copycontent.innerHTML=url;
    copycontent.select();
    document.execCommand("Copy");
    alert(copycontent.innerHTML);
}

(function() {
    'use strict';
    var item=document.querySelectorAll("td.item-icon");
    var itemid;
    var itemname;
    for (var i=0;i<item.length;i++){
        if (item[i].childNodes[1].innerHTML) {
            itemid=item[i].childNodes[1].childNodes[1].getAttribute("src").split("/")[4];
            itemid = itemid.split("_")[0];
            itemname=item[i].childNodes[1].childNodes[1].getAttribute("title");
            itemname = "alert('<url=showinfo:"+itemid+">"+itemname+"</url> ')";
            item[i].setAttribute("onclick",itemname);
            item[i].childNodes[1].removeAttribute("href");
        }
    }

})();