Add Subsplease (#120)

* add subsplease

* the last push is safe there
Signed-off-by: vvirtues <81705406+vvirtues@users.noreply.github.com>

* Delete src/all/subsplease/res/web_hi_res_512.png
This commit is contained in:
vvxrtues 2024-08-10 01:32:04 -04:00 committed by GitHub
parent af588c796a
commit 507dddff53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 238 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".all.subsplease.SubPleaseUrlActivity"
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="subsplease.org"
android:pathPattern="/anime/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>