kablagan / Highlight geektimes comments

// ==UserScript==
// @name         Highlight geektimes comments
// @namespace    GTComments
// @version      0.0.2
// @description  
// @author       Dennis Nichoga
// @match        http://geektimes.ru/*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function(){ 
    $('.comment_item .info').each(function(i, x){
        var mark = +$(x).find('.score')[0].innerText;
        if(mark >= 10) {
            $(x).css('background-color', '#00FF99');
        }
    });
    
    console.log('Comments rated');
})();