NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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; }');
})();