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
{ | |
// 出站 | |
"outbounds": [ | |
// 手动选择国家或地区节点;根据“国家或地区出站”的名称对 `outbounds` 值进行增删改,须一一对应 | |
{ "tag": "🚀 节点选择", "type": "selector", "outbounds": [ "🇭🇰 香港节点", "🇹🇼 台湾节点", "🇯🇵 日本节点", "🇸🇬 新加坡节点", "🇺🇸 美国节点", "🆓 免费节点" ] }, | |
{ "tag": "🐟 漏网之鱼", "type": "selector", "outbounds": [ "🚀 节点选择", "🎯 全球直连" ] }, | |
// 选择`🎯 全球直连`为测试本地网络(运营商网络速度和 IPv6 支持情况),可选择其它节点用于测试机场节点速度和 IPv6 支持情况 | |
{ "tag": "📈 网络测试", "type": "selector", "outbounds": [ "🎯 全球直连", "🇭🇰 香港节点", "🇹🇼 台湾节点", "🇯🇵 日本节点", "🇸🇬 新加坡节点", "🇺🇸 美国节点", "🆓 免费节点" ] }, | |
{ "tag": "🤖 人工智能", "type": "selector", "outbounds": [ "🇭🇰 香港节点", "🇹🇼 台湾节点", "🇯🇵 日本节点", "🇰🇷 韩国节点", "🇸🇬 新加坡节点", "🇺🇸 美国节点" ] }, | |
{ "tag": "🎮 游戏服务", "type": "selector", "outbounds": [ "🎯 全球直连", "🚀 节点选择" ] }, |
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
# 检查当前用户是否具有管理员权限 | |
if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) { | |
Write-Host "请以管理员身份运行此脚本。" | |
exit | |
} | |
# 注册表路径 | |
$regPath = "HKLM:\SYSTEM\CurrentControlSet\Enum\HID" | |
# 获取所有以 VID_ 开头的设备 |
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
/* 全局字体美化 | |
* 作者:RainbowBird | |
* https://gist.github.com/rain15z3/f8c9c511c7da7b99efd58766500ff084 | |
*/ | |
@font-face { | |
font-family: monospace; | |
src: local("JetBrains Mono"), local("PingFang SC"); | |
} |
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
@-moz-document domain("www.baidu.com") { | |
#kw { | |
font-size: 18px; | |
} | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: content-box; | |
} |
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
::-webkit-scrollbar { | |
width: 6px; | |
height: 6px; | |
background-color: #F5F5F5; | |
} | |
::-webkit-scrollbar-track{ | |
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3) inset; | |
background-color: #F5F5F5; | |
} | |
::-webkit-scrollbar-thumb{ |
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 Zhihu-K | |
// @namespace https://gist.github.com/rain15z3/82f8d7a5d4778d969d92211c9dfe2fed | |
// @version 1.0 | |
// @description 知乎赞同数用K显示 | |
// @author RainbowBird | |
// @match https://www.zhihu.com/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-1.11.0.min.js | |
// ==/UserScript== |