Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
importScript('User:AzaToth/twinkle.js');
importScript('User:Ioeth/friendly.js');

if( typeof( TwinkleConfig ) == 'undefined' ) TwinkleConfig = {};
	TwinkleConfig.watchRevertedPages	= [ ];
	TwinkleConfig.userTalkPageMode		= 'tab';

if( typeof( FriendlyConfig ) == 'undefined' ) FriendlyConfig = {};
	FriendlyConfig.quickWelcomeMode	= "semiauto";
	FriendlyConfig.clockStyle	= "static";
	FriendlyConfig.idsToRename	=	[
		{ id: 'ca-nstab-main', name: '★', mainPageOnly: false },
		{ id: 'ca-nstab-help', name: '?' },
		{ id: 'ca-nstab-special', name: '!!' },
		{ id: 'ca-nstab-project', name: '✶' },
		{ id: 'ca-nstab-user', name: 'Usr' },
		{ id: 'ca-edit', name: 'Ed' },
		{ id: 'ca-viewsource', name: 'Src' },
		{ id: 'ca-talk', name: 'Tlk' },
		{ id: 'ca-undelete', name: 'Undelete' },
		{ id: 'ca-addsection', name: '+' },
		{ id: 'ca-nstab-template', name: 'tmp' },
		{ id: 'ca-history', name: 'hist' },
		{ id: 'ca-move', name: 'mv' },
		{ id: 'ca-watch', name: '◎' },
		{ id: 'ca-unwatch', name: '~◎' }
	];


// ==UserScript==
// @name EnableGoogleWebHistory
// @author mallowlabs
// @namespace http://mallowlabs.s206.xrea.com/
// @version 0.0.2
// @license public domain
// @description : Enable Google Web History
// @published 2007-01-05
// @modified 2006-01-05
// @include *
// ==/UserScript==

// see also
// http://www.scss.com.au/family/andrew/opera/panels/pagerank/
// http://d.hatena.ne.jp/amatanoyo/20080104/1199450996
// =========================================
(function(){

    // avoid frame
    if (window.self != window.parent) return;

    var r=function(x,y){
        return Math.floor((x/y-Math.floor(x/y))*y+.1);
    },
    ch=function(url){
        url='info:'+url;
        var c=[0x9E3779B9,0x9E3779B9,0xE6359A60],i,j,k=0,l,f=Math.floor,
        m=function(c){
            var i,j,s=[13,8,13,12,16,5,3,10,15];
            for(i=0;i<9;i+=1){
                j=c[r(i+2,3)];
                c[r(i,3)]=(c[r(i,3)]-c[r(i+1,3)]-j)^(r(i,3)==1?j<<s[i]:j>>>s[i]);
            }
        };
        for(l=url.length;l>=12;l-=12){
            for(i=0;i<16;i+=1){
                j=k+i;c[f(i/4)]+=url.charCodeAt(j)<<(r(j,4)*8);
            }
            m(c);
            k+=12;
        }
        c[2]+=url.length;
        for(i=l;i>0;i--)
            c[f((i-1)/4)]+=url.charCodeAt(k+i-1)<<(r(i-1,4)+(i>8?1:0))*8;
        m(c);
        return'6'+c[2];
    };
    var url=document.location;

    /* create image element */
    new Image().src = 'http://www.google.com/search?client=navclient-auto&ch='+ch(url)+'&features=Rank&q=info:'+escape(url);
})();