Tachiyomi-Extensions/src/all/mangahosted/AndroidManifest.xml
Chopper c063dda9f0
Add MangaHosted (#7259)
* Add MangaHosted

* Fix search request
2025-02-23 21:26:48 +00:00

23 lines
773 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".all.mangahosted.MangaHostedUrlActivity"
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:scheme="https"
android:host="mangahosted.org"
android:pathPattern="/.*/..*" />
</intent-filter>
</activity>
</application>
</manifest>