It would be nice if this plugin can also be applied to taxonomy term pages (not just nodes and users).

I've been trying to add the following codes:

1. plugins/views/fb_social_handler_field.inc, line 64:

        elseif (!empty($values->tid)) {
          $url = fb_social_url('taxonomy/term/' . $values->tid);
        }

2. fb_social.views.inc, line 33:

  $data['taxonomy_term_data']['fb_social'] = array(
    'title' => t('Facebook Social Plugin'),
    'help' => t('Display a Facebook Social plugin.'),
    'group' => t('Taxonomy term'),
    'field' => array(
      'help' => t('Display a Facebook Social plugin.'),
      'handler' => 'fb_social_handler_field',
      'real field' => 'tid',
    ),
  );

I've been tested on my own site (localhost), and it's been quite successful. However, because I'm quite new to Drupal and to this particular module, I'm not sure whether the changes above are enough. If you don't mind, please have a look into the code, and apply the change if it's worth implemented.