Fully end to end encrypted anonymous chat program. Server only stores public key lookup for users and the encrypted messages. No credentials are transfered to the server, but kept in local browser storage. This allows 100% safe chatting.
https://safechat.ch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
997 B
31 lines
997 B
<?xml version='1.0' encoding='utf-8'?> |
|
<widget |
|
id="ch.safechat" |
|
version="@VERSION@" |
|
xmlns="http://www.w3.org/ns/widgets" |
|
xmlns:cdv="http://cordova.apache.org/ns/1.0"> |
|
<name>SafeChat</name> |
|
<description> |
|
@README |
|
</description> |
|
<author href="https://dev.marc.waeckerlin.org/redmine/projects/safechat"> |
|
Marc Wäckerlin |
|
</author> |
|
<content src="https://safechat.ch" /> |
|
<plugin name="cordova-plugin-whitelist" version="1" /> |
|
<access origin="https://safechat.ch" subdomains="true" /> |
|
<access origin="https://dev.marc.waeckerlin.org" subdomains="true" /> |
|
<allow-intent href="http://*/*" /> |
|
<allow-intent href="https://*/*" /> |
|
<allow-intent href="tel:*" /> |
|
<allow-intent href="sms:*" /> |
|
<allow-intent href="mailto:*" /> |
|
<allow-intent href="geo:*" /> |
|
<platform name="android"> |
|
<allow-intent href="market:*" /> |
|
</platform> |
|
<platform name="ios"> |
|
<allow-intent href="itms:*" /> |
|
<allow-intent href="itms-apps:*" /> |
|
</platform> |
|
</widget>
|
|
|