1
0
mirror of https://framagit.org/tom79/nitterizeme synced 2025-02-09 16:28:51 +01:00

comment #3 - Implement domains

This commit is contained in:
Thomas 2020-02-19 08:17:34 +01:00
parent 99ef48839d
commit 78a44c1862

View File

@ -147,6 +147,78 @@
android:mimeType="text/plain" />
</intent-filter>
<!-- INSTAGRAM URLs -->
<!-- instagram.com -->
<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="instagram.com"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="instagram.com"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="instagram.com"
android:mimeType="text/plain" />
</intent-filter>
<!-- www.instagram.com -->
<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="www.instagram.com"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="www.instagram.com"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="www.instagram.com"
android:mimeType="text/plain" />
</intent-filter>
<!-- m.instagram.com -->
<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="m.instagram.com"
android:pathPattern=".*"
android:scheme="https" />
<data
android:host="m.instagram.com"
android:pathPattern=".*"
android:scheme="http" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="m.instagram.com"
android:mimeType="text/plain" />
</intent-filter>
<!-- TWITTER URLs -->
<!-- mobile.twitter.com -->
<intent-filter>