Jefreesujit / Quora - Show Upvote Count in Feed Page

// ==UserScript==
// @name         Quora - Show Upvote Count in Feed Page
// @namespace    jefreesujit
// @version      1.0
// @description  A small script to Show Upvote Count in Feed Page
// @author       Jefreesujit
// @match        https://www.quora.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }

    addGlobalStyle('.feed_item .count.hide_in_feed { display: inline}');
})();