// ==UserScript== // @name Tuxun Homepage Reset // @namespace tuxun-reset // @version 0.0.5 // @description reset tuxun homepage // @author strombooli // @license MIT // @match https://tuxun.fun/ // @grant GM_xmlhttpRequest // @run-at document-idle // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.body.removeChild(document.getElementById('root')) // remove default let htmlTxt = "
教程文档
探索真实世界,找到你在的位置
组队赛回归!第二届图寻中国组队赛清明开赛~
低门槛,随机题库!玩家图寻第八届个人赛!
单人
每日挑战
每天五题,神清气爽
连胜挑战
探索者,坚持到一百题啊!
题库
走遍大江南北
揭图
图片题,新模式
Beta
积分
全球积分
全球街景的积分比赛
中国积分
江山如此多娇
娱乐
匹配
一个人或者和朋友合作挑战对手
派对
邀请好友对决
加入派对
通过派对码加入派对
探索
寻景
寻友地图
街景奇观
光怪陆离,怪奇物语
随机街景
漫步孤独星球
扩展
直播/视频/教程
看看图寻er们都创作了哪些内容吧
讨论区
一起来讨论图寻技巧吧
网络迷踪
一个发图片找地方的交流社区
炒饭小测验
地理小测验,帮助你玩好图寻
图寻文档
更新日志
App
商店

总轮次数:若干

提示:如倒计时不准/卡死/黑屏,可关闭代理,系统时间对齐互联网时间再试

快捷键:空格-确定选择,下一题; 空格-换一个(街景奇观/随机街景)

积分规则:大原则是按照你和对手在一场比赛中的期望排名来算的,在积分赛中,每局会有额外的2分距离分。如果距离小于1000公里,则加2分,大于则减2分。

小建议:尽量使用街景中的信息进行猜测,不借助搜索引擎,才能让你更快成为高手。

特别鸣谢:猫,南山大王cf,网络迷踪版主,GeoGuessr,百度街景,Google街景,MapBox

QQ群:943507031

微信公众号:图寻 | 开发者微博:@此间ZY

地图审图号:GS(2022)2885号

问题反馈:电话:15058139992,或图寻群, 可能有1个月会员奖励

浙ICP备2022031450号
" let htmlE = new DOMParser().parseFromString(htmlTxt, 'text/html').body.firstChild document.body.append(htmlE) let e = document.createElement; document.head.innerHTML += "" let reDirs = ["friend", "message", "point-rank", "world-match", "china-match", "streak", "maps", "daily-challenge", "uncover", "team", "party", "join", "event", "wonders", "random", "app", "mall"] reDirs.forEach(function(e){ document.getElementById(e).addEventListener("click", function(){ location.href = "https://tuxun.fun/" + e; console.log(e) }) }) var userId = 0 GM_xmlhttpRequest({ method: "GET", url: "https://tuxun.fun/api/v0/tuxun/user/getSelfProfile", headers: {"Content-Type": "application/json"}, onload: function(response) { userId = JSON.parse(response.responseText).data.userId let reDirOut = [["doc1", "https://www.yuque.com/chaofun/tuxun"], ["doc2", "https://www.yuque.com/chaofun/tuxun"], ["log", "https://www.yuque.com/chaofun/tuxun/changelog"], ["vid", "https://search.bilibili.com/all?keyword=%E5%9B%BE%E5%AF%BB"], ["forum", "https://choa.fun/f/753"], ["mizong", "https://choa.fun/f/84"], ["xiaoce", "https://xiaoce.fun"], ["link1", "https://choa.fun/p/1301510"], ["link2", "https://choa.fun/p/1301572"], ["user", "https://tuxun.fun/user/" + userId] ] reDirOut.forEach(function(e){ document.getElementById(e[0]).addEventListener("click", function(){ location.href = e[1]; }) }); } }); GM_xmlhttpRequest({ method: "GET", url: "https://tuxun.fun/api/v0/tuxun/getTotalGuess", headers: {"Content-Type": "application/json"}, onload: function(response) { let totalGuess = JSON.parse(response.responseText).data document.getElementsByClassName("times")[0].children[0].innerText = totalGuess } }); })();