Outlook Plugin Integration main cause

I have seen many post on outlook plugin on SuiteCRM page but they are all directed to people that install suitecrm on a windows box which is easy to download this plugin and install like any other software. am using the Appliance “SuiteCRM” that is the reason i can get to install the plugin.
SuiteCRM itself is not packaged for Debian, there is almost zero chance of there being a SuiteCRM Outlook plugin. FWIW if you want to see what software might be available from apt, you can search like this:

apt-cache search KEYWORD

That will search all available packages for the KEYWORD included in their name AND their full description. If you want to narrow it down to just packages that contain the keyword in their name and/or their short description, then do that like this:

apt-cache search KEYWORD | grep KEYWORD

If/when you find the name of the software you wish to install, you can then install it with

apt-get install PACKAGE_NAME

If you want to download code from GitHub (it’s called a “clone” as it’s basically just downloading a copy of the code), then you can do that like this:

cd /path/to/parent/of/where/you/want/it
git clone https://github.com/salesagility/SuiteCRM-Outlook-Plugin.git
https://www.techesperto.com/suitecrm-integration/

That Outlook plugin repository is the Windows source code for a Windows executable. This is because, well, Outlook only runs on Windows.

Why would anyone want that cloned to a Linux box?