Change the layout of action links under the plugin names

you can customise these links with this filter :
https://developer.wordpress.org/reference/hooks/plugin_action_links_plugin_file/

try that :

const PLUGIN_SLUG = "super-socializer/super_socializer.php";


add_filter("plugin_action_links_" . PLUGIN_SLUG, function (array $actions, string $plugin_file, array $plugin_data, string $context) {

    unset($actions[1]); // remove link "Add-Ons"
    unset($actions[2]); // remove link "Support Documentation"

    return $actions;

}, 10, 4);