├── .gitattributes
├── .gitignore
├── README.md
└── gitupdate.bat
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Set the default behavior, in case people don't have core.autocrlf set.
2 | * text=auto
3 |
4 | # Explicitly declare text files you want to always be normalized and converted
5 | # to native line endings on checkout.
6 |
7 | # Declare files that will always have CRLF line endings on checkout.
8 |
9 |
10 | # Denote all files that are truly binary and should not be modified.
11 | *.* binary
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .gradle/
2 | .externalNativeBuild/
3 | .idea/
4 | update.cmd
5 | FirefoxFQ
6 | FirefoxFQ.7z
7 | FirefoxFQ.zip
8 | FirefoxFQ.rar
9 | gitupdate.bat
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # FirefoxFQ
2 | 火狐firefox一键翻墙包
3 |
4 | 推荐:
5 |
6 |
7 | 下载FirefoxFQ
8 | https://github.com/killgcd/FirefoxFQ/releases
9 |
10 | 使用本软件
11 | 下载本项目后,解压出来,请不要解压到含有中文或空格的目录路径,请不要不解压就直接从压缩包里运行!不解压会出错!
12 | 下载后,请认真阅读里面的使用帮助说明,然后 1.xx-11.xx翻墙 可依次尝试。
13 |
14 | 电脑翻墙软件
短网址:https://x.co/killgfw
15 |
16 |
17 | -
18 | 免翻墙:每日热点禁闻
19 |
20 | -
21 | Chrome一键翻墙包
22 |
23 |
24 | -
25 | 火狐firefox一键翻墙包
26 |
27 | -
28 | 最新自由门PC版
29 |
30 | -
31 | 最新无界PC版
32 |
33 | -
34 | TorBrowser一键翻墙包
35 |
36 |
37 |
38 |
39 |
40 | ### 安卓翻墙APP下载
41 | * 禁闻浏览器
42 | * SS VPN
43 | * SpeedUp VPN
44 | * V2ray VPN
45 |
46 | 自建翻墙服务器教程
47 |
48 | * 自建V2ray服务器简明教程
49 | * 自建V2Ray+TLS翻墙配置方法
50 | * V2Ray之TLS+WebSocket翻墙方法
51 | * [V2Ray之TLS+WebSocket+Nginx+CDN配置方法](https://github.com/bannedbook/fanqiang/blob/master/v2ss/V2Ray%E4%B9%8BTLS+WebSocket+Nginx+CDN%E9%85%8D%E7%BD%AE%E6%96%B9%E6%B3%95.md)
52 | * [Brook之TLS+WebSocket+CDN翻墙教程](https://github.com/bannedbook/fanqiang/blob/master/v2ss/Brook%E4%B9%8BTLS%2BWebSocket%2BCDN%E7%BF%BB%E5%A2%99%E6%95%99%E7%A8%8B.md)
53 | * [Brook之TLS+WebSocket+Web服务器翻墙教程](https://github.com/bannedbook/fanqiang/blob/master/v2ss/Brook%E4%B9%8BTLS%2BWebSocket%2BWeb%E7%BF%BB%E5%A2%99%E6%95%99%E7%A8%8B.md)
54 | * [Brook之TLS+WebSocket翻墙教程](https://github.com/bannedbook/fanqiang/blob/master/v2ss/Brook%E4%B9%8BTLS%2BWebSocket%E7%BF%BB%E5%A2%99%E6%95%99%E7%A8%8B.md)
55 | * 自建Shadowsocks服务器简明教程
56 |
57 | 翻墙二维码、短网址:
58 | 
59 | https://git.io/jww 或 https://bit.ly/jinnews 或 https://x.co/bnews
60 | http后一定要跟s,如果微信里直接打不开,请先点击微信右上角三个点,选择在浏览器中打开
61 |
62 |
63 | 翻墙短网址:https://git.io/jww 或 https://bit.ly/jinnews 、https://x.co/fqiang
64 |
65 |
66 | 版权声明
67 | 请随意分发,勿做商业使用。
68 |
--------------------------------------------------------------------------------
/gitupdate.bat:
--------------------------------------------------------------------------------
1 | %1 start "" mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit
2 | CD /D "%~dp0"
3 | git config --global core.autocrlf true
4 | git pull origin master
5 | git add -A
6 | git commit -m "update"
7 | git push origin master
8 | git tag -a "FirefoxFQ-v202108" -m "FirefoxFQ-v202108"
9 | git push origin --tags
10 | pause
--------------------------------------------------------------------------------