Is it possible to auto-open plugins that are in developer mode?
According to documentation
The pane that you designate to open automatically will only open if the add-in is already installed on the user's device. If the user does not have the add-in installed when they open a document, the autoopen feature will not work and the setting will be ignored. If you also require the add-in to be distributed with the document you need to set the visibility property to 1; this can only be done using OpenXML, an example is provided later in this article.
In particular, the file i'm attempting to auto-open is what based off office-generator with a single modification:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<we:webextension xmlns:we="http://schemas.microsoft.com/office/webextensions/webextension/2010/11" id="{acbc717b-5139-428a-9089-e9d6d7d8affc}">
<we:reference id="acbc717b-5139-428a-9089-e9d6d7d8affc" version="1.0.0.0" store="developer" storeType="Registry"/>
<we:alternateReferences/>
<we:properties>
<we:property name="Office.AutoShowTaskpaneWithDocument" value="true"/>
</we:properties>
<we:bindings/>
<we:snapshot xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"/>
</we:webextension>
with the addition of <we:property name="Office.AutoShowTaskpaneWithDocument" value="true"/>
and by modifying manifest.xml
as follows:
<Action xsi:type="ShowTaskpane">
<TaskpaneId>Office.AutoShowTaskpaneWithDocument</TaskpaneId>
<SourceLocation resid="Taskpane.Url"/>
</Action>
Problem:
It is expected that there would be one taskpane which would be opened automatically.
The task pane that was opened automatically has an error which states that we can't find the task pane to open
. On the other hand, clicking on the ribbon allows the task pane to open as per normal, side by side with the broken auto-opened task pane as shown in the image below: