Id liek to have the option to enable/disable the custom column on the admin view of my posts. The filters and action are located here:
\wp-content\plugins\robots-meta\robots-meta.php
Line: 45 add_filter('manage_page_posts_columns',array(&$this,'robots_meta_column_heading'),10,1);
Line: 46 add_filter('manage_post_posts_columns',array(&$this,'robots_meta_column_heading'),10,1);
Line: 47 add_action('manage_pages_custom_column',array(&$this,'robots_meta_column_content'), 10, 2);
Line: 48 add_action('manage_posts_custom_column',array(&$this,'robots_meta_column_content'), 10, 2);