hackiechain / Center Google

// ==UserScript==
// @name         Center Google
// @version      0.1
// @description  center google search results
// @author       hackiechain
// @include         http://www.google.*
// @include         https://www.google.*
// @grant GM_addStyle
// @license MIT
// @run-at document-start
// ==/UserScript==

(function() {
    'use strict';
GM_addStyle('#rcnt { left: 35% !important; }');
})();