forked from Kohi-den/extensions-source

* 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
22 lines
855 B
XML
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>
|