2020-08-27 07:20:30 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-12-21 03:59:04 +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
|
2020-12-21 03:59:04 +00:00
|
|
|
android:name=".es.tumangaonline.TuMangaOnlineUrlActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
2020-08-27 07:20:30 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2020-12-21 03:59:04 +00:00
|
|
|
|
2020-08-27 07:20:30 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2020-12-21 03:59:04 +00:00
|
|
|
|
2020-08-27 07:20:30 +00:00
|
|
|
<data
|
|
|
|
android:host="lectortmo.com"
|
2020-12-21 03:59:04 +00:00
|
|
|
android:pathPattern="/library/..*/..*/..*"
|
|
|
|
android:scheme="https" />
|
2020-08-27 07:20:30 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|