I have a requirement to add a custom button beside the user Edit permission button in the space tool section of confluence as mentioned in the below screenshot.

I have tried with web item module, was able to add this much only at the upper section as mentioned in the screenshot

i have used web item module code for the above addition :
<atlassian-plugin key="${atlassian.plugin.key}"
name="${project.name}" plugins-version="2">
<plugin-info>
<description>${project.description}</description>
<version>${project.version}</version>
<vendor name="${project.organization.name}"
url="${project.organization.url}" />
<param name="plugin-icon">images/pluginIcon.png</param>
<param name="plugin-logo">images/pluginLogo.png</param>
</plugin-info>
<!-- add our i18n resource -->
<resource type="i18n" name="i18n" location="myConfluenceMacro" />
<!-- addRule our web resources -->
<web-resource key="space-admin-aad-permission-resources" name="space-admin-aad-permission Web Resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
<resource type="download" name="space-admin-aad-permission.css" location="/css/space-admin-aad-permission.css"/>
<resource type="download" name="space-admin-aad-permission.js" location="/js/space-admin-aad-permission.js"/>
<resource type="download" name="images/" location="/images"/>
<context>space-admin-aad-permission</context>
</web-resource>
<!-- Item in Space Tools -->
<web-item key="space-admin-aad-permission-manager"
name="AAD Permissions" section="system.space.tools/permissions"
weight="100">
<label key="AAD Permissions" />
<link linkId="space-admin-aad-permission-manager-id">/plugins/servlet/aidt-people-picker?spaceId=$space.id</link>
</web-item>
<servlet name="aad-people-picker" class="com.atlassian.tutorial.macro.ConfigServlet" key="aad-people-picker-servlet">
<url-pattern>/aidt-people-picker</url-pattern>
</servlet>
</atlassian-plugin>
Is there any way to add the button beside the edit permission button or any other plugin module
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.