This file contains hidden or 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
set -g @plugin 'tmux-plugins/tpm' # tpm 自己 | |
set -g @plugin 'tmux-plugins/tmux-sensible' # 推荐!提供一组合理的默认配置 | |
set -g @plugin 'christoomey/vim-tmux-navigator' # 用 Vim 的方式在 Vim 和 Tmux 窗格间导航 | |
set -g @plugin 'tmux-plugins/tmux-resurrect' # 让你在重启电脑后能恢复 tmux 会话 | |
set -g @plugin 'tmux-plugins/tmux-continuum' # 配合 resurrect 自动保存和恢复 | |
set -g @plugin 'odedlaz/tmux-onedark-theme' # 示例:一个漂亮的主题 | |
set -g @plugin 'tmux-plugins/tmux-prefix-highlight' | |
set -g @plugin 'sainnhe/tmux-fzf' | |
# ... 其他自定义配置 ... |
This file contains hidden or 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
{ | |
"cache_time": 9200, | |
"api_site": { | |
"api_1": { | |
"name": "TV-1080资源", | |
"api": "https://api.1080zyku.com/inc/api_mac10.php", | |
"detail": "https://api.1080zyku.com" | |
}, | |
"api_2": { | |
"name": "AV-155资源", |
This file contains hidden or 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
{"+GFWed":{"bypassList":[{"conditionType":"BypassCondition","pattern":"<local>"}],"color":"#99ccee","fallbackProxy":{"host":"127.0.0.1","port":1080,"scheme":"socks5"},"name":"GFWed","profileType":"FixedProfile","revision":"15cba6e4401"},"+__ruleListOf_自动切换":{"color":"#99dd99","defaultProfileName":"direct","format":"AutoProxy","lastUpdate":"2017-06-18T08:53:07.498Z","matchProfileName":"GFWed","name":"__ruleListOf_自动切换","profileType":"RuleListProfile","revision":"15cba668a71","ruleList":"[AutoProxy 0.2.9]\n! Checksum: mhSDxWNkfa/5hnJhxI50eA\n! Expires: 6h\n! Title: GFWList4LL\n! GFWList with EVERYTHING included\n! Last Modified: Sat, 10 Jun 2017 23:00:50 -0400\n!\n! HomePage: https://github.com/gfwlist/gfwlist\n! License: https://raw.githubusercontent.com/gfwlist/gfwlist/master/COPYING.txt\n!\n! GFWList is unlikely to fully comprise the real\n! rules being deployed inside GFW system. We try\n! our best to keep the list up to date. Please\n! contact us regarding URL submission / removal,\n! or suggestion / enhan |
This file contains hidden or 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
const express = require('express'); | |
const request = require('request'); | |
const app = express(); | |
const proxyServer = 'http://api.zhuishushenqi.com'; | |
const chapterServer = 'http://chapterup.zhuishushenqi.com/chapter' | |
//设置跨域访问 | |
app.all('*', function (req, res, next) { | |
res.header("Access-Control-Allow-Credentials", true); |