Ayah-intellij/src/main/resources/META-INF/plugin.xml

36 lines
1.8 KiB
XML
Raw Normal View History

2022-08-18 16:50:06 +00:00
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<!-- Unique identifier of the plugin. It should be FQN. It cannot be changed between the plugin versions. -->
2022-08-19 10:19:34 +00:00
<id>com.anas.intellij.plugins.ayah</id>
2022-08-18 16:50:06 +00:00
2022-08-24 14:11:46 +00:00
<depends>com.intellij.modules.platform</depends>
2022-08-18 16:50:06 +00:00
<!-- Public plugin name should be written in Title Case.
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-name -->
2022-08-19 10:19:34 +00:00
<name>Ayah</name>
<!-- A displayed Vend`or name or Organization ID displayed on the Plugins Page. -->
2022-08-20 08:49:44 +00:00
<vendor email="anas.elgarhy.dev@gmail.com" url="https://github.com/anas-elgarhy">Anas Elgarhy</vendor>
2022-08-18 16:50:06 +00:00
<!-- Product and plugin compatibility requirements.
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html -->
<depends>com.intellij.modules.platform</depends>
2022-11-02 21:06:04 +00:00
2022-08-18 16:50:06 +00:00
<!-- Extension points defined by the plugin.
Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html -->
<extensions defaultExtensionNs="com.intellij">
2022-08-19 10:19:34 +00:00
<postStartupActivity implementation="com.anas.intellij.plugins.ayah.AyahStartupActivity" />
<applicationConfigurable parentId="Other Settings"
instance="com.anas.intellij.plugins.ayah.settings.AyahSettingsConfigurable"
id="com.anas.intellij.plugins.ayah.settings.AyahSettingsConfigurable"
displayName="Ayah Plugin Settings" />
<applicationService serviceImplementation="com.anas.intellij.plugins.ayah.settings.AyahSettingsState" />
<notificationGroup id="Random ayah from the quran" displayType="BALLOON" />
<notificationGroup displayType="BALLOON" id="Basmalh on Start" />
<notificationGroup displayType="BALLOON" id="Random Ayah Notification" />
2022-08-18 16:50:06 +00:00
</extensions>
2022-11-02 21:06:04 +00:00
</idea-plugin>