This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"swagger": "2.0", | |
"info": { | |
"title": "DeepL Translate API", | |
"version": "2.0", | |
"description": "This is a community swagger description of the DeepL API." | |
}, | |
"host": "api.deepl.com", | |
"basePath": "/v2", | |
"schemes": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Office.onReady(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<WebApplicationInfo> | |
<Id>[Application ID]</Id> | |
<Resource>[Application ID URI]</Resource> | |
<Scopes> | |
<Scope>openid</Scope> | |
<Scope>user.read</Scope> | |
<Scope>profile</Scope> | |
</Scopes> | |
</WebApplicationInfo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementById($parameters.WidgetId).innerHTML = $parameters.Html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Office.onReady(function () { | |
Office.context.mailbox.item.body.getAsync('html', function(async) { | |
$parameters.Body = async.value; | |
$resolve(); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Office.onReady(function () { | |
Office.context.mailbox.item.body.getAsync('text', function(async) { | |
$parameters.Body = async.value; | |
$resolve(); | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" | |
xmlns:mailappfor="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="MailApp"> | |
<Id>[ApplicationId]</Id> | |
<Version>1.0.0.0</Version> | |
<ProviderName>[Company Name]</ProviderName> | |
<DefaultLocale>de-DE</DefaultLocale> | |
<DisplayName DefaultValue="DeepL Translate" /> |