Last active
March 20, 2020 01:33
-
-
Save geekyouth/8406173441da2d35fb6dbfed6ceec41d to your computer and use it in GitHub Desktop.
【原创】greasyfork.org 油猴脚本:跳过QQ邮箱超链接的鸡肋安全提示---fuck_geek-share.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 跳过QQ邮箱安全提示 | |
// @namespace https://github.com/geekyouth | |
// @version 0.1 | |
// @description 跳过QQ邮箱超链接的鸡肋安全提示 | |
// @author geekyouth | |
// @include https://mail.qq.com/cgi-bin/ | |
// @match https://mail.qq.com/cgi-bin/readtemplate* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
goUrl(1); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 自动展开云栖社区 | |
// @namespace https://java666.cn | |
// @version 0.1 | |
// @description 自动展开云栖社区的文章 | |
// @author geekyouth | |
// @match https://yq.aliyun.com/articles/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
var jumptoread = function(){ | |
document.getElementById("btn-readmore").click(); | |
} | |
setTimeout(jumptoread, 2000); | |
})(); |
Author
geekyouth
commented
Mar 11, 2020
脚本已经发布到油猴官网脚本库
https://greasyfork.org/zh-CN/scripts/397903-geek-share-com
fuck_geek-share.com,移除 geek-share.com 页面推广信息,牛皮癣广告真的太讨厌了。干掉他吧🪓🧱🗡
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment