2020-08-27 07:20:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-12-21 03:31:12 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="eu.kanade.tachiyomi.extension">
|
2020-08-27 07:20:30 +00:00
|
|
|
<application>
|
|
|
|
<activity
|
|
|
|
android:name=".TuMangaOnlineUrlActivity"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay"
|
|
|
|
android:excludeFromRecents="true">
|
|
|
|
<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="lectortmo.com"
|
|
|
|
android:pathPattern="/library/..*/..*/..*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|