2020-08-11 01:42:01 +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-11 01:42:01 +00:00
|
|
|
<application>
|
|
|
|
<activity
|
2021-07-02 17:29:04 +00:00
|
|
|
android:name=".en.naniscans.WeebreaderUrlActivity"
|
2020-12-21 03:59:04 +00:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
2020-08-11 01:42:01 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2020-12-21 03:59:04 +00:00
|
|
|
|
2020-08-11 01:42:01 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
2021-07-02 17:29:04 +00:00
|
|
|
android:host="${SOURCEHOST}"
|
2020-12-21 03:59:04 +00:00
|
|
|
android:pathPattern="/titles/..*"
|
2021-07-02 17:29:04 +00:00
|
|
|
android:scheme="${SOURCESCHEME}" />
|
2020-08-11 01:42:01 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
2020-12-21 03:59:04 +00:00
|
|
|
</manifest>
|