Skip to content

Commit f91d396

Browse files
committed
update readme
1 parent dc32c6f commit f91d396

File tree

2 files changed

+79
-23
lines changed

2 files changed

+79
-23
lines changed

README.md

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,23 @@
22

33
![Build_TouchHelper_APK](https://github.com/zfdang/Android-Touch-Helper/workflows/Build_TouchHelper_APK/badge.svg)
44

5+
[中文说明](README.zh-CN.md)
56

6-
# 开屏跳过 - 安卓系统的开屏广告自动跳过助手
7+
# Skip Splash Ads on Android
78

8-
自动跳过软件的实现,一般都是基于安卓的Accessibility“无障碍服务”实现。开启了无障碍服务的软件,可以获取屏幕上的任何内容,从而可以检测广告,帮助用户自动跳过。因此,使用广告跳过程序,最大的风险是个人信息被泄露!
9+
Android-Touch-Helper is an Android helper app that automatically skips splash ads. It is implemented with Android Accessibility Service, which means the app can inspect on-screen content to detect and click skip targets.
910

10-
**本程序是开源程序,不需要网络权限,不需要存储权限,不会收集或者上传任何信息!绝无隐私问题!**
11+
Because Accessibility-based tools can potentially access sensitive on-screen information, privacy is the biggest concern for this kind of app.
1112

12-
程序可以使用三种方法跳过开屏广告:
13+
**This project is open source, does not require network permission or storage permission, and does not collect or upload personal data.**
1314

14-
1. 关键字。在应用中查找含有关键字的按钮,如果发现了对应的按钮,自动帮用户点击从而跳过广告。
15-
2. 应用的指定控件。当应用工作时,自动查找对应的控件,如果找到则自动点击;
16-
3. 应用的指定位置。当应用工作时,自动点击对应的区域。
15+
The app can skip splash ads in three ways:
1716

18-
欢迎大家贡献想法和代码!
17+
1. Keyword detection. It looks for buttons containing specific keywords and clicks them automatically.
18+
2. Specific UI controls. It can find and click predefined controls for a given app.
19+
3. Specific screen positions. It can click a configured screen area for a given app.
20+
21+
Ideas and pull requests are welcome.
1922

2023
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
2124
alt="Get it on F-Droid"
@@ -24,40 +27,35 @@
2427
alt="Get it on Google Play"
2528
height="80">](https://play.google.com/store/apps/details?id=com.zfdang.touchhelper)
2629

27-
# 项目网站
30+
# Project Website
2831

2932
[http://TouchHelper.zfdang.com](http://TouchHelper.zfdang.com)
3033

3134
## Star History
3235

3336
[![Star History Chart](https://api.star-history.com/svg?repos=zfdang/android-touch-helper&type=Date)](https://www.star-history.com/#zfdang/android-touch-helper)
3437

38+
# Maintenance Note
3539

36-
# 一点说明
37-
这是几年前搞的一个个人项目,现在没什么精力来改进和维护了,大家提的新需求了,估计很难满足了...
40+
This started as a personal project several years ago, and I no longer have much time to actively improve or maintain it. New feature requests may be difficult to support.
3841

39-
如果有人愿意提交PR, 我会尽量Review之后Merge的
42+
If you would like to contribute a PR, I will still do my best to review and merge it.
4043

4144
```
42-
推荐另外一款开源软件:
45+
Recommended open-source alternative:
4346
https://github.com/gkd-kit/gkd
4447
45-
有不少预制好的规则可以用:
48+
There are also many ready-made rule sets:
4649
https://github.com/topics/gkd-subscription
4750
```
4851

49-
# 感谢
52+
# Acknowledgements
5053

51-
项目借鉴了不少AccessibilityTool的代码,在此表示感谢!
54+
This project borrowed ideas and code from AccessibilityTool. Many thanks:
5255

5356
https://github.com/LGH1996/AccessibilityTool
5457

55-
# 赞助声明
56-
57-
[NodeSupport](https://github.com/NodeSeekDev/NodeSupport)赞助了本项目
58-
59-
[![image](docs/yxvm-small.png)](https://yxvm.com/)
60-
61-
本项目由 [ZMTO](https://zmto.com/) 的「开源项目免费 VPS计划」提供算力支持。 感谢 ZMTO 对开源社区的支持!
58+
# Sponsorship
6259

60+
This project is supported by [ZMTO](https://zmto.com/) through its free VPS program for open-source projects. Thanks to ZMTO for supporting the open-source community.
6361

README.zh-CN.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Android-Touch-Helper
2+
3+
![Build_TouchHelper_APK](https://github.com/zfdang/Android-Touch-Helper/workflows/Build_TouchHelper_APK/badge.svg)
4+
5+
[English README](README.md)
6+
7+
# 开屏跳过 - 安卓系统的开屏广告自动跳过助手
8+
9+
自动跳过软件的实现,一般都是基于安卓的 Accessibility“无障碍服务”实现。开启了无障碍服务的软件,可以获取屏幕上的任何内容,从而可以检测广告,帮助用户自动跳过。因此,使用广告跳过程序,最大的风险是个人信息被泄露!
10+
11+
**本程序是开源程序,不需要网络权限,不需要存储权限,不会收集或者上传任何信息!绝无隐私问题!**
12+
13+
程序可以使用三种方法跳过开屏广告:
14+
15+
1. 关键字。在应用中查找含有关键字的按钮,如果发现了对应的按钮,自动帮用户点击从而跳过广告。
16+
2. 应用的指定控件。当应用工作时,自动查找对应的控件,如果找到则自动点击;
17+
3. 应用的指定位置。当应用工作时,自动点击对应的区域。
18+
19+
欢迎大家贡献想法和代码!
20+
21+
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"
22+
alt="Get it on F-Droid"
23+
height="80">](https://f-droid.org/packages/com.zfdang.touchhelper/)
24+
[<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png"
25+
alt="Get it on Google Play"
26+
height="80">](https://play.google.com/store/apps/details?id=com.zfdang.touchhelper)
27+
28+
# 项目网站
29+
30+
[http://TouchHelper.zfdang.com](http://TouchHelper.zfdang.com)
31+
32+
## Star History
33+
34+
[![Star History Chart](https://api.star-history.com/svg?repos=zfdang/android-touch-helper&type=Date)](https://www.star-history.com/#zfdang/android-touch-helper)
35+
36+
# 一点说明
37+
38+
这是几年前搞的一个个人项目,现在没什么精力来改进和维护了,大家提的新需求了,估计很难满足了...
39+
40+
如果有人愿意提交 PR,我会尽量 review 之后 merge。
41+
42+
```
43+
推荐另外一款开源软件:
44+
https://github.com/gkd-kit/gkd
45+
46+
有不少预制好的规则可以用:
47+
https://github.com/topics/gkd-subscription
48+
```
49+
50+
# 感谢
51+
52+
项目借鉴了不少 AccessibilityTool 的代码,在此表示感谢!
53+
54+
https://github.com/LGH1996/AccessibilityTool
55+
56+
# 赞助声明
57+
58+
本项目由 [ZMTO](https://zmto.com/) 的「开源项目免费 VPS计划」提供算力支持。感谢 ZMTO 对开源社区的支持!

0 commit comments

Comments
 (0)