Skip to content

Commit 92fd5d2

Browse files
authored
Update README.md
1 parent 6bcf925 commit 92fd5d2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,48 @@
33

44
## 个人手机用脚本推荐
55
脚本主要来自[Greasy Fork](https://greasyfork.org/),可到网站上面去搜索看有没自己主要的。
6+
67
1. HTML5视频播放器增强脚本
78
<br>[脚本页面](https://greasyfork.org/scripts/381682) | [安装脚本](https://greasyfork.org/scripts/381682/code/script.user.js)
9+
810
2. 【屏蔽广告】屏蔽谷歌广告、百度广告、知乎广告、隐藏谷歌和百度搜索增强百度搜索结果的各种广告等等(过滤所有采用谷歌联盟和百度联盟等广告联盟的广告)
911
<br>[脚本页面](https://greasyfork.org/scripts/460743) | [安装脚本](https://greasyfork.org/scripts/460743/code/script.user.js)
12+
1013
3. 骚扰拦截
1114
<br>[脚本页面](https://greasyfork.org/scripts/440871) | [安装脚本](https://greasyfork.org/scripts/440871/code/script.user.js)
15+
1216
4. CSDN/知乎/哔哩哔哩/简书免登录去除弹窗广告 🛡
1317
<br>[脚本页面](https://greasyfork.org/scripts/428960) | [安装脚本](https://greasyfork.org/scripts/428960/code/script.user.js)
18+
1419
5. Picviewer CE+
1520
<br>[脚本页面](https://greasyfork.org/scripts/24204) | [安装脚本](https://greasyfork.org/scripts/24204/code/script.user.js)
21+
1622
6. 聚合搜索引擎切换导航[手机版][移动端]
1723
<br>[脚本页面](https://greasyfork.org/scripts/462130) | [安装脚本](https://greasyfork.org/scripts/462130/code/script.user.js)
24+
1825
7. Github 增强 - 高速下载
1926
<br>[脚本页面](https://greasyfork.org/scripts/412245) | [安装脚本](https://greasyfork.org/scripts/412245/code/script.user.js)
27+
2028
8. 网页限制解除(改)
2129
<br>[脚本页面](https://greasyfork.org/scripts/28497) | [安装脚本](https://greasyfork.org/scripts/28497/code/script.user.js)
30+
2231
9. 大人的Greasyfork
2332
<br>[脚本页面](https://greasyfork.org/scripts/23840) | [安装脚本](https://greasyfork.org/scripts/23840/code/script.user.js)
33+
2434
10. Greasy Fork 增强
2535
<br>[脚本页面](https://greasyfork.org/scripts/467078) | [安装脚本](https://greasyfork.org/scripts/467078/code/script.user.js)
36+
2637
11. 图聚合展示by xhua
2738
<br>[脚本页面](https://greasyfork.org/scripts/442098) | [安装脚本](https://greasyfork.org/scripts/442098/code/script.user.js)
39+
2840
12. anti-redirect 去除重定向
2941
<br>[脚本页面](https://greasyfork.org/scripts/11915) | [安装脚本](https://greasyfork.org/scripts/11915/code/anti-redirect.user.js)
3042

3143
## 自写自用的两个脚本
44+
3245
1. NGA网址重定向
3346
<br>[脚本页面](https://greasyfork.org/scripts/22508) | [安装脚本](https://greasyfork.org/scripts/22508/code/script.user.js)
47+
3448
2. UA自由切
3549
<br>[脚本页面](https://greasyfork.org/scripts/490764) | [安装脚本](https://greasyfork.org/scripts/490764/code/script.user.js)
3650

@@ -39,32 +53,45 @@
3953
<summary>Converting GL.iNet MT2500 from CN to Global</summary>
4054

4155
## Converting GL.iNet MT2500 from CN to Global
56+
4257
> 操作参考自[OpenWrt论坛的一张帖子](https://forum.openwrt.org/t/converting-gl-inet-mt3000-beryl-ax-from-cn-to-global/165159),未实际验证。
58+
4359
### 方法一 *[form markusl](https://forum.openwrt.org/t/converting-gl-inet-mt3000-beryl-ax-from-cn-to-global/165159/4)*
60+
4461
1.[国际官网](https://dl.gl-inet.com/?model=mt2500)获取Global版uboot固件,并在路由器中进行刷机更新。
62+
4563
2. 完成此操作后,登录到刷机完的路由器并重新设置密码。
4664

4765
**如果您在路由器UI中看到CN,如下所示,则需要按照以下步骤**
4866

4967
3. 通过 SSH 在终端中运行以下命令:
68+
5069
```shell
5170
echo US > /tmp/country_code
5271
mount --bind /tmp/country_code /proc/gl-hw-info/country_code
5372
cat /proc/gl-hw-info/country_code
5473
```
74+
5575
刷新 UI,路由器现在应显示为Global,直到下次重新启动。
76+
5677
4. 要使其永久化,请执行以下操作:
78+
5779
```shell
5880
cat /etc/rc.local
5981
# Check that you haven't already added the below, then proceed
6082
sed -i '1i\echo US > /tmp/country_code\nmount --bind /tmp/country_code /proc/gl-hw-info/country_code' /etc/rc.local
6183
cat /etc/rc.local
6284
# Verify that the lines were added, at next boot the system will still be the global version
6385
```
86+
6487
5. 尝试重新启动并验证您是否拥有了Global版版本!
88+
6589
6. 固件更新后,您可能需要重复以上操作。
90+
6691
### 方法二 *[form shi05275](https://forum.openwrt.org/t/converting-gl-inet-mt3000-beryl-ax-from-cn-to-global/165159/7)*
92+
6793
进入SSH,执行以下操作:
94+
6895
```shell
6996
echo 0 > /sys/block/mmcblk0boot1/force_ro
7097
echo "US" |dd of=/dev/mmcblk0boot1 bs=1 seek=136

0 commit comments

Comments
 (0)