// ==UserScript== // @name Valentine's Day // @name:zh-CN 情人节惊喜 // @name:zh-TW 情人節驚喜 // @namespace hoothin // @version 0.1 // @description A script to make a surprise for Valentine's Day // @description:zh-CN 伪装成百度新闻的情人节惊喜 // @description:zh-TW 僞裝成百度新聞的情人節驚喜 // @author hoothin // @license MIT License // @include *://www.baidu.com/ // @include *://www.baidu.com/home* // @include *://www.baidu.com/?tn=* // @include *://www.baidu.com/index.php* // @include *://www.baidu.com/s?wd=Valentine* // @grant GM_openInTab // @downloadURL none // ==/UserScript== (function() { 'use strict'; var valentinePhotoUrl="https://ss1.baidu.com/6ONXsjip0QIZ8tyhnq/it/u=58952482,3191586726&fm=80&w=179&h=119&img.JPG"; //新闻图链接 var valentineWords="AAA:颜值对我来说不是问题"; //新闻标题 var valentinName="AAA"; //情人名字 var myName="BBB"; //自己名字 var time="2007 1 12"; //纪念日 var date=new Date(); var dateDay=date.getDate(),dateMonth=date.getMonth()+1; if(dateDay!=14||dateMonth!=2)return; if(/wd=Valentine/.test(location.href)){ var dayArr=time.split(" "); var html=` Our Love Story
${valentinName}, I have fallen in love with you for
Love u forever and ever.
- ${myName}
`; GM_openInTab('data:text/html;charset=utf-8,' + encodeURIComponent(html),false); }else{ var listWrapper=document.querySelector(".s-news-list-wrapper"); if(listWrapper){ var valentineItem=document.createElement("div"); valentineItem.className="s-news-special s-news-item s-news-special-item-tpl-2 s-opacity-blank8"; valentineItem.innerHTML=`
中国日报网 02-11 15:58
`; listWrapper.insertBefore(valentineItem,listWrapper.firstChild); } } })();