Add custom button to 'Search for issues' page

Hello
I am one of developer who create plugins for Jira. It is possible to add my own button to this page?

What I need to add to atlassian-plugin.xml?

I try also to do that !

The only way I found to add the button programmatically by javascript…

It’s a normal web-item —

<web-item key="${project.artifactId}-navigator-button" section="jira.navigator.pluggable.items" weight="242">
        <label key="transfer.navigator.action.button"/>
        <styleClass>filteraction-transfer-sharedEntity</styleClass>
        <conditions type="AND">
            <condition class="com.spacex.addons.jira.sharedobjects.condition.UserIsLoggedIn"/>
            <condition class="com.spacex.addons.jira.sharedobjects.condition.UserHasGlobalPermission">
                <param name="permission">USER_PICKER</param>
            </condition>
            <condition class="com.spacex.addons.jira.sharedobjects.condition.UserHasGlobalPermission">
                <param name="permission">CREATE_SHARED_OBJECTS</param>
            </condition>
            <condition class="com.spacex.addons.jira.sharedobjects.condition.UserHasSearchRequestInSession" />
        </conditions>
        <context-provider class="com.spacex.addons.jira.sharedobjects.provider.GetSearchRequestForContext"/>
        <link linkId="${project.artifactId}-navigator-link">/transfer-sharedEntity/${sharedEntity.getId()}</link>
    </web-item>
2 Likes

Thanks :smiley: !

So I want to add a button before the drop-down button of that, but I don’t find the section…