V2EX增强插件

一些增强功能

目前为 2025-03-30 提交的版本。查看 最新版本

// ==UserScript==
// @name          V2EX增强插件
// @description   一些增强功能
// @homepage      https://gf.qytechs.cn/zh-CN/scripts/3452
// @namespace     yfmx746qpx8vhhmrgzt9s4cijmejj3tn
// @icon          https://favicon.yandex.net/favicon/www.v2ex.com
// @author        me
// @match         https://*.v2ex.com/*
// @match         https://v2ex.com/*
// @version       2025.03.30.2
// @grant         none
// ==/UserScript==
 
// 2025.03.30 原生代码实现签到功能,去除对jQuery库的依赖
// 2024.03.08 新消息界面,回复提醒对比感谢提醒更加醒目
// 2024.02.27 回复框增加快捷回复,建议广告贴发在推广节点
// 2024.01.16 新消息界面,显示消息序号,页码链接显示序号范围
// 2024.01.08 更新管理员列表,标记回帖中漏标记的管理员
// 2023.12.27 避免链接转图片的大小超出布局
// 2021.11.26 账户余额页面增加签到页面链接
// 2020.10.19 首页增加全文搜索链接
// 2020.10.10 解决由于改版导致的定位错误导致无法签到问题
// 2019.10.25 解决Safari不能重加载新浪图片
// 2019.08.01 修正帖子tag区域的链接转图片误判
// 2019.05.12 新浪的图片反防盗链
// 2017.05.16 由于存储数据出错,改变存储数据的方式
// 2016.09.21 修复发帖页面判断用户名出错的情况
// 2016.09.14 修正判断登录(不可用)状态逻辑
// 2016.05.25 链接自动转图片
// 2016.05.21 新增召唤/呼叫管理员
// 2016.05.09 Webkit内核允许修改回复框高度
// 2016.04.12 在回复时可@所有人
// 2015.10.16 新增在回复中标记楼主
// 2015.03.22 尝试修正未知原因情况下导致的签到失败。
// 2015.02.07 解决JQuery库在某种情况可能会无法载入
// 2014.10.07 某种情况下会产生cookie重复赋值,增加清理补丁。
// 2014.10.06 cookie信息过期时间改为3天
 
 
setTimeout(function(){
    // 签到
    setTimeout(() => {
        if (document.querySelector('a.balance_area') && document.querySelector('a[href="/settings"]')) {//已登陆
            var username = document.querySelector('a[href^="/member/"]').innerHTML;
            var today=new Date().toISOString().split("T")[0];
            if(localStorage.signdate==today && localStorage.signuser==username){
                return;//已签到就结束
            }
            var infobar = document.querySelector('#search');
            if(!infobar){
                return;//没有搜索栏的页面不执行签到工作
            }
            var days=0;//连续登陆天数
    
            fetch("/")
            .then(()=>{
                infobar.value = "正在检测每日签到状态...";
                return fetch("/mission/daily");//继续继续,前往领取页面
            })
            .then(rsp => rsp.text())
            .then(data=>{
                var parser = new DOMParser();
                var doc = parser.parseFromString(data, "text/html");
                if(doc.querySelector('input[value^="领取"]')){//领取按钮存在,尝试领取
                    infobar.value = "正在领取签到奖励..."
                    var url=doc.querySelector('input[value^="领取"]').getAttribute('onclick').split("'")[1];
                    //<input type="button" class="xxx" value="领取 X 铜币" onclick="location.href = '/mission/daily/redeem?once=12345';">
                    return fetch(url)//继续继续,提交领取动作
                } else {//按钮不存在
                    if (data.indexOf("已领取") != -1) {
                        localStorage.signdate=today;
                        localStorage.signuser=username;
                        throw new Error(infobar.value = "今天已经签到了。");
                    } else {
                        throw new Error(infobar.value = "无法识别领取奖励按钮 :( ");
                    }
                }
            })
            .then(rsp => rsp.text())
            .then(data=>{
                days=data.split("已连续登")[1].split(" ")[1];//连续登陆天数
    
                //若是首页,签到入口淡化消失
                if(document.querySelector('a[href="/mission/daily"]')){
                    (function(ele=document.querySelector('a[href="/mission/daily"]').parentElement.parentElement){
                        ele.style.opacity=1;//默认为""
                        var Timeindex=setInterval(() => {
                            ele.style.opacity -= 0.067;
                            if(ele.style.opacity<0.01){
                                ele.style.display="none";
                                clearInterval(Timeindex);
                            }
                        }, 200);
                    })()
                }
                return fetch("/balance");//继续继续,查看领取数量
            })
            .then(rsp => rsp.text())
            .then(data=>{
                var todaystr=new Date().toISOString().split("T")[0].replaceAll("-","");
                if (data.indexOf(todaystr + " 的每日登录(不可用)奖励")!== -1){
                    var money=data.match(/每日登录(不可用)奖励 \d+ 铜币/)[0].match(/\d+/)[0];
                    console.log(infobar.value = "已连续领取" + days + "天,本次领到" + money + "铜币");
                } else {
                    console.log(infobar.value = "未能识别到领取");
                }
            })
            .catch(error => {
                console.error("Sign info:", error);
                if(typeof error=="string" && error.indexOf("已经签到") == -1) {
                    infobar.value = "请手动领取今日的登录(不可用)奖励!";
                }
            });//end fetch
        }//end 判断登陆状态
    }, 0);// end 签到
 
    //帖子标记个别没有自动标记的管理员,回复所有人
    if (location.href.indexOf("/t/") != -1) {
    (function (){
        var modarr=["Livid","Kai","Olivia","GordianZ","sparanoid","Tink","ano"];
        var modlist="@"+modarr.join(" @");//生成@所有管理员的列表
        var uname=document.getElementById("Rightbar").getElementsByTagName("a")[0].href.split("/member/")[1];//自己用户名
        //标记管理员,预存回复用户名列表
        var lzname=document.getElementById("Main").getElementsByClassName("avatar")[0].parentNode.href.split("/member/")[1];
        var allname='@'+lzname+' ';
        var all_elem = document.querySelectorAll('a[href^="/member"].dark');
        for(var i=0; i<all_elem.length; i++) {
            if (modlist.indexOf(all_elem[i].innerHTML)!= -1){
                if (document.getElementsByClassName("badges")[i].innerHTML.indexOf("mod") == -1){
                    document.getElementsByClassName("badges")[i].innerHTML+='<div class="badge mod">MOD</div>';
                }
            }
            //为回复所有人做准备
            if ( uname != all_elem[i].innerHTML && all_elem[i].href.indexOf("/member/") != -1
            && all_elem[i].innerText == all_elem[i].innerHTML && allname.indexOf('@'+all_elem[i].innerHTML+' ') == -1 ) {
                allname+='@'+ all_elem[i].innerHTML+' ';
            }
        }
 
 
        if ( document.getElementById("reply_content") ) {
            document.getElementById("reply_content").parentNode.innerHTML
                +="&nbsp;&nbsp;&nbsp;&nbsp;<a href='javascript:;' onclick='if ( document.getElementById(\"reply_content\").value.indexOf(\""
                +allname+"\") == -1 ) {document.getElementById(\"reply_content\").value+=\"\\r\\n"+allname+"\"}'>@所有人</a>";
            if ( document.body.style.WebkitBoxShadow !== undefined ) {
                //允许调整回复框高度
                document.getElementById("reply_content").style.resize="vertical";
            }
            document.getElementById("reply_content").style.overflow="auto";
 
            document.getElementById("reply_content").parentNode.innerHTML
                +="&nbsp;&nbsp;&nbsp;&nbsp;<a href='javascript:;' onclick='if ( document.getElementById(\"reply_content\").value.indexOf(\""
                +modlist+"\") == -1 ) {document.getElementById(\"reply_content\").value+=\"\\r\\n"+modlist+"\"}'>@管理员</a>";
        }
    })();
    }// end 回复所有人,@管理员
 
    // 帖子回复框增加快捷回复,提示广告贴应发在推广节点
    if (location.href.indexOf("/t/") != -1) {
    (function(){
        document.getElementById("reply_content").parentNode.innerHTML
            +="&nbsp;&nbsp;&nbsp;&nbsp;<a href='javascript:;' onclick='document.getElementById(\"reply_content\").value+=\"\\r\\n"+"@Livid 这贴明显是推广贴,却没有发在推广节点。"+"\"'>报告广告贴</a>";
    })()
    }// end 举报广告贴链接
 
    // 图片链接自动转换成图片 参考caoyue@v2ex
    (function (){
        var links = document.links;
        for (var i=0;i<links.length;i++){
            var link = links[i];
            if (/^http.*\.(?:jpg|jpeg|jpe|bmp|png|gif)/i.test(link.href)
                && !/<img\s/i.test(link.innerHTML) && link.href.indexOf("v2ex.com/tag")==-1){
                link.innerHTML = "<img title='" + link.href + "' src='" + link.href + "' style='max-width:98%' decoding='async' loading='lazy' />";
                // decoding='async'异步解析图像,加快显示其他内容。loading='lazy'懒加载。
            }
        }
    })();// end 图片链接自动转换成图片
 
    //新浪图床的图片反防盗链
    (function (){
        Array.from(document.images).forEach(ele=>{
            if (ele.src.indexOf(".sinaimg.cn")!=-1) {
                ele.setAttribute("referrerPolicy","no-referrer");
                ele.src="https://image.baidu.com/search/down?thumburl=https://baidu.com&url="+ele.src;
            }
        })
    })();// end 新浪图床的图片反防盗链
 
    // 在账户余额界面/明细界面的上方增加签到页面链接
    if ( location.href.indexOf("/balance") != -1 && document.getElementsByClassName("tab").length > 0) {
        document.getElementsByClassName("tab")[0].parentNode.innerHTML+='<a class="tab" href="/mission/daily" >签到</a>'
    }
    //
 
    // 新消息界面,显示消息序号,页码链接显示序号范围
    if (location.href.indexOf("/notifications") != -1){
    (function(){
        var page_index=new URL(window.location.href).searchParams.get('p');
        var before_index=0;
        if(page_index!=null){
            before_index=(page_index-1)*50;
        }
        document.querySelectorAll("a[onclick^=delete]").forEach((ele,i)=>{
            var index_ele=document.createElement("span");
            index_ele.innerText=(i+1+before_index)+". ";
            ele.parentElement.insertBefore(index_ele,ele.parentElement.firstElementChild)
        })
        var allmsgcount=document.querySelectorAll(".header .gray")[0].innerText;//消息总数
        document.querySelectorAll(".page_current,.page_normal").forEach((ele)=>{
            var index_a=(ele.innerText-1)*50+1;
            var index_b=(ele.innerText-1)*50+50;
            var title_str=index_a+"-"+index_b;
            if(allmsgcount-index_a<50){
                title_str=index_a+"-"+allmsgcount;
            }
            ele.setAttribute("title",title_str)
        })
    })();
    }// end 新消息界面,序号和翻页按钮优化
 
    // 新消息界面,回复提醒对比感谢提醒更加醒目
    if (location.href.indexOf("/notifications") != -1){
    (function(){
        if(document.querySelectorAll(".payload").length > 0){
            document.querySelectorAll(".payload").forEach((ele) => {
                if(ele.parentElement.innerText.indexOf("时提到了你") != -1
                || ele.parentElement.innerText.indexOf("里回复了你") != -1 ){
                    //1、被人@提醒。2、回复我的主题提醒。
                    ele.style.backgroundColor="#F9EA9A";
                }
            })
        }
    })();
    }// end 新消息界面优化
 
},0);// end

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址