Modify link options when hovering over post title

If you want to just hide the link in the admin area, you can add this CSS code to your admin area. Assuming that the extra link is the LAST one in the row, add this code to you theme’s functions.php file:

add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
  echo '<style>.row-actions span:last-child {display:none} </style>';

This will hide the link added by the plug-in. If the extra link is not the last one in the row, then you have to replace :last-child with :nth-child(n), which (n) is the number of the element in the row, starting from 1.