├── README.md ├── SCOPE ├── SOURCE_URL └── SUMMARY /README.md: -------------------------------------------------------------------------------- 1 | # KillDomainVerification 2 | 3 | Related: 4 | 5 | This xposed module prevents the system (and also yourself) from allowing apps to always open supported links. 6 | 7 | It also enables you to open supported links in apps which are not "verified" on Android 12 and above. 8 | 9 | 模块功能:打开 http / https 链接时总是询问,而不是直接在 app 中打开 10 | 11 | 副作用:手动设也没法直接用应用打开链接;Android 12+ 选择时会同时显示未“验证”的 app 12 | 13 | 理论支持 Android 6 及以后 14 | 15 | ## Screenshots 16 | 17 | ### Android 11 and below 18 | 19 | ![screenshot1](https://github.com/Henry-ZHR/KillDomainVerification/raw/master/screenshot1.png?raw=true) 20 | 21 | ### Android 12 and above 22 | 23 | ![screenshot2](https://github.com/Henry-ZHR/KillDomainVerification/raw/master/screenshot2.png?raw=true) ![screenshot3](https://github.com/Henry-ZHR/KillDomainVerification/raw/master/screenshot3.png?raw=true) 24 | -------------------------------------------------------------------------------- /SCOPE: -------------------------------------------------------------------------------- 1 | ["android"] -------------------------------------------------------------------------------- /SOURCE_URL: -------------------------------------------------------------------------------- 1 | https://github.com/Henry-ZHR/KillDomainVerification -------------------------------------------------------------------------------- /SUMMARY: -------------------------------------------------------------------------------- 1 | This xposed module prevents the system (and also yourself) from allowing apps to always open supported links. 2 | 打开 http / https 链接时总是询问,而不是直接在 app 中打开 --------------------------------------------------------------------------------