├── .gitignore ├── Common.conf ├── Mac0.conf ├── Mac1.conf ├── Mild.conf ├── Modules ├── SMZDM.sgmodule ├── Skip Proxy List.sgmodule ├── UrlPlusMod.sgmodule ├── WeChat.sgmodule ├── rrsp.sgmodule ├── weibo.sgmodule ├── youku.sgmodule ├── youtube.sgmodule └── zhihu.sgmodule ├── README.md ├── Scripts ├── Bilibili.js ├── JDAdRemove.js ├── QQNews.js ├── SMZDM.js ├── Toutiao.js ├── WeChat.js ├── YouTube.js ├── Zhihu.js ├── douyin_feed.js ├── douyin_follow.js ├── douyin_nearby.js ├── douyin_post.js ├── jd_ad.js ├── rrsp.js ├── wb_ad.js └── wb_launch.js ├── surge3.conf.ini └── surgeNew.conf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Modules/.DS_Store 3 | -------------------------------------------------------------------------------- /Common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Common.conf -------------------------------------------------------------------------------- /Mac0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Mac0.conf -------------------------------------------------------------------------------- /Mac1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Mac1.conf -------------------------------------------------------------------------------- /Mild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Mild.conf -------------------------------------------------------------------------------- /Modules/SMZDM.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/SMZDM.sgmodule -------------------------------------------------------------------------------- /Modules/Skip Proxy List.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/Skip Proxy List.sgmodule -------------------------------------------------------------------------------- /Modules/UrlPlusMod.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/UrlPlusMod.sgmodule -------------------------------------------------------------------------------- /Modules/WeChat.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/WeChat.sgmodule -------------------------------------------------------------------------------- /Modules/rrsp.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/rrsp.sgmodule -------------------------------------------------------------------------------- /Modules/weibo.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/weibo.sgmodule -------------------------------------------------------------------------------- /Modules/youku.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/youku.sgmodule -------------------------------------------------------------------------------- /Modules/youtube.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/youtube.sgmodule -------------------------------------------------------------------------------- /Modules/zhihu.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Modules/zhihu.sgmodule -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Bilibili.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/Bilibili.js -------------------------------------------------------------------------------- /Scripts/JDAdRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/JDAdRemove.js -------------------------------------------------------------------------------- /Scripts/QQNews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/QQNews.js -------------------------------------------------------------------------------- /Scripts/SMZDM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/SMZDM.js -------------------------------------------------------------------------------- /Scripts/Toutiao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/Toutiao.js -------------------------------------------------------------------------------- /Scripts/WeChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/WeChat.js -------------------------------------------------------------------------------- /Scripts/YouTube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/YouTube.js -------------------------------------------------------------------------------- /Scripts/Zhihu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/Zhihu.js -------------------------------------------------------------------------------- /Scripts/douyin_feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/douyin_feed.js -------------------------------------------------------------------------------- /Scripts/douyin_follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/douyin_follow.js -------------------------------------------------------------------------------- /Scripts/douyin_nearby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/douyin_nearby.js -------------------------------------------------------------------------------- /Scripts/douyin_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/douyin_post.js -------------------------------------------------------------------------------- /Scripts/jd_ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/jd_ad.js -------------------------------------------------------------------------------- /Scripts/rrsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/rrsp.js -------------------------------------------------------------------------------- /Scripts/wb_ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/wb_ad.js -------------------------------------------------------------------------------- /Scripts/wb_launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/Scripts/wb_launch.js -------------------------------------------------------------------------------- /surge3.conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/surge3.conf.ini -------------------------------------------------------------------------------- /surgeNew.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scomper/Surge/HEAD/surgeNew.conf --------------------------------------------------------------------------------