generated from wandyezj/website-react
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* outlook manifest
- Loading branch information
Showing
10 changed files
with
453 additions
and
65 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
# Extension Office Add-In | ||
# Build Add-In | ||
|
||
## Goals | ||
|
||
- Easily play with office.js APIs. | ||
- Write scripts to automate work. | ||
- Explore samples. | ||
|
||
## Values | ||
|
||
- Open Source | ||
- Maintainable | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?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:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp"> | ||
<Id>01000000-1000-0000-0000-000000007357</Id> | ||
<Version>1.0.1.0</Version> | ||
<ProviderName>wandyezj</ProviderName> | ||
<DefaultLocale>en-US</DefaultLocale> | ||
<DisplayName DefaultValue="(local) Build" /> | ||
<Description DefaultValue="Build Extensions" /> | ||
<IconUrl DefaultValue="https://localhost:3000/assets/icon-128.png" /> | ||
<HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/icon-128.png" /> | ||
<SupportUrl DefaultValue="https://localhost:3000/statements/support.md" /> | ||
<AppDomains> | ||
<AppDomain>https://localhost:3000</AppDomain> | ||
</AppDomains> | ||
<Hosts> | ||
<Host Name="Mailbox" /> | ||
</Hosts> | ||
<Requirements> | ||
<Sets> | ||
<!-- Use the highest version so that old clients do not need to be supported --> | ||
<Set Name="Mailbox" MinVersion="1.7" /> | ||
</Sets> | ||
</Requirements> | ||
<!-- Form Settings is required for older Outlook clients --> | ||
<FormSettings> | ||
<Form xsi:type="ItemRead"> | ||
<DesktopSettings> | ||
<SourceLocation DefaultValue="https://localhost:3000/taskpane.html" /> | ||
<RequestedHeight>250</RequestedHeight> | ||
</DesktopSettings> | ||
</Form> | ||
</FormSettings> | ||
<Permissions>ReadWriteMailbox</Permissions> | ||
<Rule xsi:type="RuleCollection" Mode="Or"> | ||
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" /> | ||
</Rule> | ||
<DisableEntityHighlighting>false</DisableEntityHighlighting> | ||
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0"> | ||
<Requirements> | ||
<bt:Sets DefaultMinVersion="1.7"> | ||
<bt:Set Name="Mailbox" /> | ||
</bt:Sets> | ||
</Requirements> | ||
<Hosts> | ||
<Host xsi:type="MailHost"> | ||
<DesktopFormFactor> | ||
<!-- MessageReadCommandSurface when reading an email, | ||
Compose is when replying to an email --> | ||
<ExtensionPoint xsi:type="MessageComposeCommandSurface"> | ||
<OfficeTab id="TabDefault"> | ||
<Group id="CommandsGroup"> | ||
<Label resid="CommandsGroup.Label" /> | ||
<Control xsi:type="Button" id="TaskpaneButtonEdit"> | ||
<Label resid="TaskpaneButtonEdit.Label" /> | ||
<Supertip> | ||
<Title resid="TaskpaneButtonEdit.Label" /> | ||
<Description resid="TaskpaneButtonEdit.Tooltip" /> | ||
</Supertip> | ||
<Icon> | ||
<bt:Image size="16" resid="Icon.Edit.16x16" /> | ||
<bt:Image size="32" resid="Icon.Edit.32x32" /> | ||
<bt:Image size="80" resid="Icon.Edit.80x80" /> | ||
</Icon> | ||
<Action xsi:type="ShowTaskpane"> | ||
<SourceLocation resid="TaskpaneEdit.Url" /> | ||
</Action> | ||
</Control> | ||
<Control xsi:type="Button" id="TaskpaneButtonRun"> | ||
<Label resid="TaskpaneButtonRun.Label" /> | ||
<Supertip> | ||
<Title resid="TaskpaneButtonRun.Label" /> | ||
<Description resid="TaskpaneButtonRun.Tooltip" /> | ||
</Supertip> | ||
<Icon> | ||
<bt:Image size="16" resid="Icon.Run.16x16" /> | ||
<bt:Image size="32" resid="Icon.Run.32x32" /> | ||
<bt:Image size="80" resid="Icon.Run.80x80" /> | ||
</Icon> | ||
<Action xsi:type="ShowTaskpane"> | ||
<SourceLocation resid="TaskpaneRun.Url" /> | ||
</Action> | ||
</Control> | ||
</Group> | ||
</OfficeTab> | ||
</ExtensionPoint> | ||
</DesktopFormFactor> | ||
</Host> | ||
</Hosts> | ||
<Resources> | ||
<bt:Images> | ||
<bt:Image id="Icon.16x16" DefaultValue="https://localhost:3000/assets/icon-16.png" /> | ||
<bt:Image id="Icon.32x32" DefaultValue="https://localhost:3000/assets/icon-32.png" /> | ||
<bt:Image id="Icon.80x80" DefaultValue="https://localhost:3000/assets/icon-80.png" /> | ||
|
||
<bt:Image id="Icon.Run.16x16" DefaultValue="https://localhost:3000/assets/icon-play-16.png" /> | ||
<bt:Image id="Icon.Run.32x32" DefaultValue="https://localhost:3000/assets/icon-play-32.png" /> | ||
<bt:Image id="Icon.Run.80x80" DefaultValue="https://localhost:3000/assets/icon-play-80.png" /> | ||
|
||
<bt:Image id="Icon.Edit.16x16" DefaultValue="https://localhost:3000/assets/icon-edit-16.png" /> | ||
<bt:Image id="Icon.Edit.32x32" DefaultValue="https://localhost:3000/assets/icon-edit-32.png" /> | ||
<bt:Image id="Icon.Edit.80x80" DefaultValue="https://localhost:3000/assets/icon-edit-80.png" /> | ||
</bt:Images> | ||
<bt:Urls> | ||
<bt:Url id="TaskpaneEdit.Url" DefaultValue="https://localhost:3000/edit.html" /> | ||
<bt:Url id="TaskpaneRun.Url" DefaultValue="https://localhost:3000/run.html" /> | ||
</bt:Urls> | ||
<bt:ShortStrings> | ||
<bt:String id="TabExtension.TabLabel" DefaultValue="(local) Extension" /> | ||
<bt:String id="CommandsGroup.Label" DefaultValue="(local) Extension" /> | ||
<bt:String id="TaskpaneButtonEdit.Label" DefaultValue="Edit" /> | ||
<bt:String id="TaskpaneButtonRun.Label" DefaultValue="Run" /> | ||
</bt:ShortStrings> | ||
<bt:LongStrings> | ||
<bt:String id="TaskpaneButtonEdit.Tooltip" DefaultValue="Edit Snip" /> | ||
<bt:String id="TaskpaneButtonRun.Tooltip" DefaultValue="Run Snip" /> | ||
</bt:LongStrings> | ||
</Resources> | ||
</VersionOverrides> | ||
</OfficeApp> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?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:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp"> | ||
<Id>01000000-1000-0000-0000-000000007357</Id> | ||
<Version>1.0.0.0</Version> | ||
<ProviderName>wandyezj</ProviderName> | ||
<DefaultLocale>en-US</DefaultLocale> | ||
<DisplayName DefaultValue="Build" /> | ||
<Description DefaultValue="Build Extensions" /> | ||
<IconUrl DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-128.png" /> | ||
<HighResolutionIconUrl DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-128.png" /> | ||
<SupportUrl DefaultValue="https://wandyezj.github.io/website-react-extension/statements/support.md" /> | ||
<AppDomains> | ||
<AppDomain>https://wandyezj.github.io</AppDomain> | ||
</AppDomains> | ||
<Hosts> | ||
<Host Name="Mailbox" /> | ||
</Hosts> | ||
<Requirements> | ||
<Sets> | ||
<!-- Use the highest version so that old clients do not need to be supported --> | ||
<Set Name="Mailbox" MinVersion="1.7" /> | ||
</Sets> | ||
</Requirements> | ||
<!-- Form Settings is required for older Outlook clients --> | ||
<FormSettings> | ||
<Form xsi:type="ItemRead"> | ||
<DesktopSettings> | ||
<SourceLocation DefaultValue="https://wandyezj.github.io/website-react-extension/taskpane.html" /> | ||
<RequestedHeight>250</RequestedHeight> | ||
</DesktopSettings> | ||
</Form> | ||
</FormSettings> | ||
<Permissions>ReadWriteMailbox</Permissions> | ||
<Rule xsi:type="RuleCollection" Mode="Or"> | ||
<Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" /> | ||
</Rule> | ||
<DisableEntityHighlighting>false</DisableEntityHighlighting> | ||
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0"> | ||
<Requirements> | ||
<bt:Sets DefaultMinVersion="1.7"> | ||
<bt:Set Name="Mailbox" /> | ||
</bt:Sets> | ||
</Requirements> | ||
<Hosts> | ||
<Host xsi:type="MailHost"> | ||
<DesktopFormFactor> | ||
<!-- MessageReadCommandSurface when reading an email, | ||
Compose is when replying to an email --> | ||
<ExtensionPoint xsi:type="MessageComposeCommandSurface"> | ||
<OfficeTab id="TabDefault"> | ||
<Group id="CommandsGroup"> | ||
<Label resid="CommandsGroup.Label" /> | ||
<Control xsi:type="Button" id="TaskpaneButtonEdit"> | ||
<Label resid="TaskpaneButtonEdit.Label" /> | ||
<Supertip> | ||
<Title resid="TaskpaneButtonEdit.Label" /> | ||
<Description resid="TaskpaneButtonEdit.Tooltip" /> | ||
</Supertip> | ||
<Icon> | ||
<bt:Image size="16" resid="Icon.Edit.16x16" /> | ||
<bt:Image size="32" resid="Icon.Edit.32x32" /> | ||
<bt:Image size="80" resid="Icon.Edit.80x80" /> | ||
</Icon> | ||
<Action xsi:type="ShowTaskpane"> | ||
<SourceLocation resid="TaskpaneEdit.Url" /> | ||
</Action> | ||
</Control> | ||
<Control xsi:type="Button" id="TaskpaneButtonRun"> | ||
<Label resid="TaskpaneButtonRun.Label" /> | ||
<Supertip> | ||
<Title resid="TaskpaneButtonRun.Label" /> | ||
<Description resid="TaskpaneButtonRun.Tooltip" /> | ||
</Supertip> | ||
<Icon> | ||
<bt:Image size="16" resid="Icon.Run.16x16" /> | ||
<bt:Image size="32" resid="Icon.Run.32x32" /> | ||
<bt:Image size="80" resid="Icon.Run.80x80" /> | ||
</Icon> | ||
<Action xsi:type="ShowTaskpane"> | ||
<SourceLocation resid="TaskpaneRun.Url" /> | ||
</Action> | ||
</Control> | ||
</Group> | ||
</OfficeTab> | ||
</ExtensionPoint> | ||
</DesktopFormFactor> | ||
</Host> | ||
</Hosts> | ||
<Resources> | ||
<bt:Images> | ||
<bt:Image id="Icon.16x16" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-16.png" /> | ||
<bt:Image id="Icon.32x32" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-32.png" /> | ||
<bt:Image id="Icon.80x80" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-80.png" /> | ||
|
||
<bt:Image id="Icon.Run.16x16" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-play-16.png" /> | ||
<bt:Image id="Icon.Run.32x32" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-play-32.png" /> | ||
<bt:Image id="Icon.Run.80x80" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-play-80.png" /> | ||
|
||
<bt:Image id="Icon.Edit.16x16" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-edit-16.png" /> | ||
<bt:Image id="Icon.Edit.32x32" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-edit-32.png" /> | ||
<bt:Image id="Icon.Edit.80x80" DefaultValue="https://wandyezj.github.io/website-react-extension/assets/icon-edit-80.png" /> | ||
</bt:Images> | ||
<bt:Urls> | ||
<bt:Url id="TaskpaneEdit.Url" DefaultValue="https://wandyezj.github.io/website-react-extension/edit.html" /> | ||
<bt:Url id="TaskpaneRun.Url" DefaultValue="https://wandyezj.github.io/website-react-extension/run.html" /> | ||
</bt:Urls> | ||
<bt:ShortStrings> | ||
<bt:String id="TabExtension.TabLabel" DefaultValue="(local) Extension" /> | ||
<bt:String id="CommandsGroup.Label" DefaultValue="(local) Extension" /> | ||
<bt:String id="TaskpaneButtonEdit.Label" DefaultValue="Edit" /> | ||
<bt:String id="TaskpaneButtonRun.Label" DefaultValue="Run" /> | ||
</bt:ShortStrings> | ||
<bt:LongStrings> | ||
<bt:String id="TaskpaneButtonEdit.Tooltip" DefaultValue="Edit Snip" /> | ||
<bt:String id="TaskpaneButtonRun.Tooltip" DefaultValue="Run Snip" /> | ||
</bt:LongStrings> | ||
</Resources> | ||
</VersionOverrides> | ||
</OfficeApp> |
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
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
Oops, something went wrong.