extensions-source/src/all/subsplease/AndroidManifest.xml
vvxrtues 507dddff53
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
2024-08-10 12:32:04 +07:00

22 lines
855 B
XML

<?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>