Tachiyomi-Extensions/src/all/webtoons/AndroidManifest.xml
AwkwardPeak7 a4347e9da1
Webtoons.com: refactor and fix for site changes (#9245)
* Webtoons Translate: move out of multisrc & rework

it basically override everything from the main webtoons class, so split it off

* DongmanManhua: move to individual

* Webtoons: fix and make individual

* remove old multisrc

* use meta og:image

* deeplink fix

* fix deeplink crash & old details thumbnails
2025-07-25 05:47:24 +01:00

44 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name="eu.kanade.tachiyomi.extension.all.webtoons.WebtoonsUrlActivity"
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="webtoons.com"
android:pathPattern="/.*/.*/.*/..*"
android:scheme="https" />
<data
android:host="www.webtoons.com"
android:pathPattern="/.*/.*/.*/..*"
android:scheme="https" />
<data
android:host="m.webtoons.com"
android:pathPattern="/.*/.*/.*/..*"
android:scheme="https" />
<data
android:host="webtoons.com"
android:pathPattern="/.*/.*/.*/.*/..*"
android:scheme="https" />
<data
android:host="www.webtoons.com"
android:pathPattern="/.*/.*/.*/.*/..*"
android:scheme="https" />
<data
android:host="m.webtoons.com"
android:pathPattern="/.*/.*/.*/.*/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>