Outline

SS to Outine

SS 格式

# 语法格式
ss://method:password@hostname:port

# 示例
ss://aes-256-gcm:[email protected]:10091

SS 转 Outline

Outline 接受 Base64 编码后的 SS 节点,故将 SS 节点信息进行 Base64 编码即可,方法如下。

方法一:使用浏览器的控制台执行命令

# 语法格式
console.log( "ss://" + btoa("method:password@hostname:port") + "#节点名称" )

# 示例
console.log( "ss://" + btoa("aes-256-gcm:[email protected]:10091") + "#HK-1" )

执行结果如下

方法二:使用 Linux 命令行生成

Last updated