mirror of
https://framagit.org/tom79/nitterizeme
synced 2025-02-10 16:50:49 +01:00
comment #3 - Implement domains
This commit is contained in:
parent
99ef48839d
commit
78a44c1862
@ -147,6 +147,78 @@
|
|||||||
android:mimeType="text/plain" />
|
android:mimeType="text/plain" />
|
||||||
</intent-filter>
|
</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 -->
|
<!-- TWITTER URLs -->
|
||||||
<!-- mobile.twitter.com -->
|
<!-- mobile.twitter.com -->
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user