Skip to content

Instantly share code, notes, and snippets.

View yakirChen's full-sized avatar
🎯
⁄(⁄⁄•⁄ω⁄•⁄⁄)⁄

yakirChen yakirChen

🎯
⁄(⁄⁄•⁄ω⁄•⁄⁄)⁄
View GitHub Profile
@yakirChen
yakirChen / manifest-v2.md
Created August 5, 2025 06:03 — forked from ishad0w/manifest-v2.md
macOS how to Enable Manifest V2 extensions for another year (until June 2025)

Arc

defaults write company.thebrowser.Browser.plist ExtensionManifestV2Availability -int 2

Chrome

defaults write com.google.Chrome.plist ExtensionManifestV2Availability -int 2

Chrome Beta

@yakirChen
yakirChen / git_ssh_proxy.md
Created January 17, 2024 07:29 — forked from chenshengzhi/git_ssh_proxy.md
git ssh 代理设置

仅为 GitHub 设置代理

git 代理

设置 git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
设置完成后, ~/.gitconfig 文件中会增加以下条目:

[http "https://github.com"]
    proxy = socks5://127.0.0.1:1086