Skip to main content
replaced http://stackapps.com/ with https://stackapps.com/
Source Link

This really should be reconsidered, there are (alt least) 2 dupes of this, all with a positive score - it's obvious a lot of people would like this feature!

Till then though, here's a userscriptuserscript to highlight answerer comments:

// ==UserScript== // @name Highlight answerer's comments // @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F // @version 0.2 // @description Highlight's the names of answerer's on SE websites // @author ṧнʊß (http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F) // @match *://*.stackexchange.com/* // @match *://*.stackoverflow.com/* // @match *://*.superuser.com/* // @match *://*.serverfault.com/* // @match *://*.askubuntu.com/* // @match *://*.stackapps.com/* // @match *://*.mathoverflow.net/* // @grant none // ==/UserScript== function colorAnswerer() { $('.answercell').each(function(x, obj) { var x = $(this).find('.user-details a').text(); $('.answer .comment-user').each(function(i) { if ($(this).text() == x) { $(this).css('background-color', 'orange'); } }); }); } $(document).ready(function() { $('.comments').bind('DOMNodeInserted DOMNodeRemoved', function(event) { if (event.type == 'DOMNodeInserted' || event.type == 'DOMNodeInserted') { colorAnswerer(); } }); }); 

enter image description here

Note: This may not the most up-to-date version - please install my SE Optional Features userscriptSE Optional Features userscript for the latest version.

This really should be reconsidered, there are (alt least) 2 dupes of this, all with a positive score - it's obvious a lot of people would like this feature!

Till then though, here's a userscript to highlight answerer comments:

// ==UserScript== // @name Highlight answerer's comments // @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F // @version 0.2 // @description Highlight's the names of answerer's on SE websites // @author ṧнʊß (http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F) // @match *://*.stackexchange.com/* // @match *://*.stackoverflow.com/* // @match *://*.superuser.com/* // @match *://*.serverfault.com/* // @match *://*.askubuntu.com/* // @match *://*.stackapps.com/* // @match *://*.mathoverflow.net/* // @grant none // ==/UserScript== function colorAnswerer() { $('.answercell').each(function(x, obj) { var x = $(this).find('.user-details a').text(); $('.answer .comment-user').each(function(i) { if ($(this).text() == x) { $(this).css('background-color', 'orange'); } }); }); } $(document).ready(function() { $('.comments').bind('DOMNodeInserted DOMNodeRemoved', function(event) { if (event.type == 'DOMNodeInserted' || event.type == 'DOMNodeInserted') { colorAnswerer(); } }); }); 

enter image description here

Note: This may not the most up-to-date version - please install my SE Optional Features userscript for the latest version.

This really should be reconsidered, there are (alt least) 2 dupes of this, all with a positive score - it's obvious a lot of people would like this feature!

Till then though, here's a userscript to highlight answerer comments:

// ==UserScript== // @name Highlight answerer's comments // @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F // @version 0.2 // @description Highlight's the names of answerer's on SE websites // @author ṧнʊß (http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F) // @match *://*.stackexchange.com/* // @match *://*.stackoverflow.com/* // @match *://*.superuser.com/* // @match *://*.serverfault.com/* // @match *://*.askubuntu.com/* // @match *://*.stackapps.com/* // @match *://*.mathoverflow.net/* // @grant none // ==/UserScript== function colorAnswerer() { $('.answercell').each(function(x, obj) { var x = $(this).find('.user-details a').text(); $('.answer .comment-user').each(function(i) { if ($(this).text() == x) { $(this).css('background-color', 'orange'); } }); }); } $(document).ready(function() { $('.comments').bind('DOMNodeInserted DOMNodeRemoved', function(event) { if (event.type == 'DOMNodeInserted' || event.type == 'DOMNodeInserted') { colorAnswerer(); } }); }); 

enter image description here

Note: This may not the most up-to-date version - please install my SE Optional Features userscript for the latest version.

Bounty Awarded with 50 reputation awarded by Tim
Source Link
ᔕᖺᘎᕊ
  • 19.4k
  • 3
  • 62
  • 97

This really should be reconsidered, there are (alt least) 2 dupes of this, all with a positive score - it's obvious a lot of people would like this feature!

Till then though, here's a userscript to highlight answerer comments:

// ==UserScript== // @name Highlight answerer's comments // @namespace http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F // @version 0.2 // @description Highlight's the names of answerer's on SE websites // @author ṧнʊß (http://stackexchange.com/users/4337810/%E1%B9%A7%D0%BD%CA%8A%C3%9F) // @match *://*.stackexchange.com/* // @match *://*.stackoverflow.com/* // @match *://*.superuser.com/* // @match *://*.serverfault.com/* // @match *://*.askubuntu.com/* // @match *://*.stackapps.com/* // @match *://*.mathoverflow.net/* // @grant none // ==/UserScript== function colorAnswerer() { $('.answercell').each(function(x, obj) { var x = $(this).find('.user-details a').text(); $('.answer .comment-user').each(function(i) { if ($(this).text() == x) { $(this).css('background-color', 'orange'); } }); }); } $(document).ready(function() { $('.comments').bind('DOMNodeInserted DOMNodeRemoved', function(event) { if (event.type == 'DOMNodeInserted' || event.type == 'DOMNodeInserted') { colorAnswerer(); } }); }); 

enter image description here

Note: This may not the most up-to-date version - please install my SE Optional Features userscript for the latest version.