
* feat: Create SlimeRead base * feat: Implement popular manga page * feat: Implement latest manga page * feat: Implement search manga page * feat: Implement manga details page * feat: Implement chapter list * feat: Parse page list * fix: Revert chapter list * chore: Apply rate-limit in the source API * chore: Add Origin header to API requests * chore: Add source icon * chore: Add isNsfw flag
23 lines
852 B
XML
23 lines
852 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<application>
|
|
<activity
|
|
android:name=".pt.slimeread.SlimeReadUrlActivity"
|
|
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="slimeread.com"
|
|
android:pathPattern="/manga/..*"
|
|
android:scheme="https" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|