Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-flutter committed Sep 21, 2024
1 parent 119dbab commit afa47c0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions redirect.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name redirect 外链跳转
// @version 1.52.0
// @description 自动跳转(重定向)到目标链接,免去点击步骤。适配了简书、知乎、微博、QQ邮箱、QQPC、QQNT、印象笔记、贴吧、CSDN、YouTube、微信、企业微信、微信开放社区、开发者知识库、豆瓣、个人图书馆、Pixiv、搜狗、Google、站长之家、OSCHINA、掘金、腾讯文档、pc6下载站、爱发电、Gitee、天眼查、爱企查、企查查、优设网、51CTO、力扣、花瓣网、飞书、Epic、Steam、语雀、牛客网、哔哩哔哩、少数派、5ch、金山文档、石墨文档、urlshare、酷安、网盘分享、腾讯云开发者社区、腾讯兔小巢、云栖社区
// @version 1.53.0
// @description 自动跳转(重定向)到目标链接,免去点击步骤。适配了简书、知乎、微博、QQ邮箱、QQPC、QQNT、印象笔记、贴吧、CSDN、YouTube、微信、企业微信、微信开放社区、开发者知识库、豆瓣、个人图书馆、Pixiv、搜狗、Google、站长之家、OSCHINA、掘金、腾讯文档、pc6下载站、爱发电、Gitee、天眼查、爱企查、企查查、优设网、51CTO、力扣、花瓣网、飞书、Epic、Steam、语雀、牛客网、哔哩哔哩、少数派、5ch、金山文档、石墨文档、urlshare、酷安、网盘分享、腾讯云开发者社区、腾讯兔小巢、云栖社区、NodeSeek
// @author sakura-flutter
// @namespace https://github.com/sakura-flutter/tampermonkey-scripts
// @license GPL-3.0
Expand Down Expand Up @@ -38,6 +38,8 @@
// @match *://docs.qq.com/scenario/link.html*
// @match *://www.pc6.com/goread.html*
// @match *://afdian.net/link*
// @match *://afdian.com/link*
// @match *://ifdian.net/link*
// @match *://gitee.com/link*
// @match *://www.tianyancha.com/security*
// @match *://aiqicha.baidu.com/safetip*
Expand All @@ -63,6 +65,7 @@
// @match *://support.qq.com/products/*/link-jump*
// @match *://txc.qq.com/products/*/link-jump*
// @match *://yq.aliyun.com/go/articleRenderRedirect*
// @match *://www.nodeseek.com/jump*
// @include /^https?:\/\/www\.google\..{2,7}url/
// ==/UserScript==

Expand Down Expand Up @@ -462,7 +465,7 @@ const sites = [{
})
}, {
name: '爱发电',
test: 'afdian.net/link',
test: ['afdian.net/link', 'afdian.com/link', 'ifdian.net/link'],
use: () => ({
query: 'target'
})
Expand Down Expand Up @@ -615,6 +618,12 @@ const sites = [{
use: () => ({
query: 'url'
})
}, {
name: 'NodeSeek',
test: 'www.nodeseek.com/jump',
use: () => ({
query: 'to'
})
}];
/* harmony default export */ const redirect_sites = (sites);
;// CONCATENATED MODULE: ./src/scripts/redirect/index.ts
Expand Down

0 comments on commit afa47c0

Please sign in to comment.