梦汐 发表于 2022-6-15 03:38

【JS】Steam轻量扩展脚本

本帖最后由 梦汐 于 2022-6-15 03:44 编辑

花了点时间重写并修复一下BUG,方便以后会增加其他功能。安装传送门
// ==UserScript==
// @name      Steam轻量扩展
// @namespace   Violentmonkey Scripts
// @match       *://store.steampowered.com/app/*
// @grant       none
// @version   1.2
// @author      -
// @license   MIT
// @description 2022/5/17 上午11:21:16
// ==/UserScript==

var I_style = "border-radius: 2px;border: none;padding: 1px;display: inline-block;cursor: pointer;text-decoration: none !important;color: #67c1f5 !important;background: rgba( 103, 193, 245, 0.2 );padding: 0 15px;font-size: 15px;line-height: 30px;"
var list = {
    验号:function(){window.open("https://lixianla.com/search-"+/app\/(\d+)/.exec(window.location.href)+"-3.htm")},
    市场:function(){window.open("https://steamcommunity.com/market/search?q="+$1(".apphub_AppName").innerHTML)},
    价格:function(){window.open("https://steamdb.info/app/"+/app\/(\d+)/.exec(window.location.href))},
};Statistics=0;
for(I_name in list){Statistics++;
    if (Statistics>1) {
      var style_ex = "margin-left: 3px";
    }
    else{
      var style_ex = "";
    }
    var Temporary = document.createElement('div');
    Temporary.innerHTML='<span>'+I_name+'</span>';
    Temporary.setAttribute("class","shichang");
    Temporary.setAttribute("style",I_style+style_ex);
    document.getElementById("queueBtnFollow").appendChild(Temporary);
    Temporary.onclick=list
}

柯以熙 发表于 2022-6-15 06:22

什么功能啊

yuanjie408 发表于 2022-6-15 07:49

这个啥功能啊!!!!

KMT-jiang 发表于 2022-6-15 08:23

506874511 发表于 2022-6-15 08:34

没看懂干什么的啊!

sp0770 发表于 2022-6-15 08:43

有啥功能啊

海尔波普彗星 发表于 2022-6-15 08:45

也不知道有什么用?

han99 发表于 2022-6-15 09:11

什么功能加了

Haojiankang 发表于 2022-6-15 09:17

66666666666666

kll545012 发表于 2022-6-15 10:39

一脸懵逼的进来,2脸懵逼的出去,这是干嘛的?有什么功能
页: [1] 2
查看完整版本: 【JS】Steam轻量扩展脚本