NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Highlight top comments // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match *://geektimes.ru/* // @match *://megamozg.ru/* // @match *://habrahabr.ru/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; // Your code here... $(document).ready(function() { $('.comment-item').each(function(i, x){ var commentItem1 = $(x); var scoreItem = commentItem1.find('.js-score')[0]; if(scoreItem != undefined) { var score = +scoreItem.innerHTML; if(score >= 10) { commentItem1.css('background-color', '#00FFCC'); } } }); //console.log('Comments highlighted'); });