您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
当前为
// ==UserScript== // @name 秋哥视界 // @namespace http://iqiuge.com/ // @version 0.4 // @description try to take over the world! // @author iisimpler // @match http://* // @match https://* // @grant none // ==/UserScript== (function () { 'use strict'; var siteUrl = window.location.href; if (siteUrl.indexOf('hga030.com') > 0) { return; } if (siteUrl.indexOf('bf1.s168.com') > 0) { window.location.href = "http://bf2.310v.com:3389/"; } window.onload = function () { boldFont(); if (siteUrl.indexOf('90vs.com') > 0) { improveShowFor90VS(); notCheckElm("#opq_gg1"); } if (siteUrl.indexOf('310v.com') > 0) { improveShowFor310V(); } }; })(); function checkElm(checkSelector) { var checkboxElement = document.querySelector(checkSelector); if (!checkboxElement.checked) { checkboxElement.click(); } } function notCheckElm(checkSelector) { var checkboxElement = document.querySelector(checkSelector); if (checkboxElement.checked) { checkboxElement.click(); } } function improveShowFor90VS() { checkElm("#gongneng1 > li:nth-child(4) > i > span"); checkElm("#match_red"); checkElm("#match_yellow"); checkElm("#qdpm"); document.querySelectorAll("[id^='g_zd']").forEach(function (item) { item.style.display = "none"; }); document.querySelectorAll("[id^='gg']").forEach(function (item) { item.style.display = "none"; }); document.querySelector("#header").style.height = 0; document.querySelector("#header > div.logo").style.display = "none"; } function improveShowFor310V() { // 点击功能设置 document.querySelector("#idm2 > td:nth-child(21)").click(); document.getElementById("id_m").style.display = "none"; // 国语 checkElm("#jfy1"); // 角球 checkElm("#id_jq"); // 球队排名 checkElm("#id_qdpm"); // 让球 checkElm("#id_otp0"); // 大小球 checkElm("#id_otp1"); // 欧赔 checkElm("#id_otp2"); // 语音提示 checkElm("#yyts2"); // 球队语言 checkElm("#jfy_1"); // 舒适大字体 checkElm("#zt_11"); // 不显示入球 notCheckElm("#id_m > table > tbody > tr > td > table > tbody > tr:nth-child(4) > td > table > tbody > tr > td:nth-child(2) > table > tbody > tr:nth-child(31) > td > input[type=checkbox]"); // 显示积分 checkElm("#id_m > table > tbody > tr > td > table > tbody > tr:nth-child(4) > td > table > tbody > tr > td:nth-child(2) > table > tbody > tr:nth-child(35) > td > input[type=radio]:nth-child(2)"); } function ignoreError(func) { try { func(); } catch (e) { console.log(e); } } function boldFont() { // 微软雅黑+加粗 var css = '*:not([class*="icon"]):not([class*="fa"]):not([class*="logo"]):not([class*="mi"]):not([class*="code"]):not(i){font-family: "Microsoft Yahei",Arial,"Material Icons Extended",stonefont,iknow-qb_share_icons,review-iconfont,mui-act-font,fontAwesome,tm-detail-font,office365icons,MWF-MDL2,global-iconfont,"Bowtie",myfont !important;font-weight:900 !important;}'; var style = document.createElement('style'); style.innerHTML = css window.document.head.appendChild(style); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址