RememberKosovo

Make any stubborn form remember entries. Autocomplete, autofill, pre-fill, remember passwords and usernames and other form entries.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

// ==UserScript==
// @name           RememberKosovo
// @namespace      Agrons
// @description    Make any stubborn form remember entries. Autocomplete, autofill, pre-fill, remember passwords and usernames and other form entries.
//    This script is called RememberKosovo. Have you noticed that sometimes
//    your browser does not ask you if you want the form entries to be 
//    remembered? This simple script turns on the remembering feature on all
//    websites.
// @date           2014-03-04
// @version        0.22
// @author         Agron Selimaj ([email protected]) & flossk.org
// @include        https://*
// @include        http://*
// ==/UserScript==

//    This script is called RememberKosovo. Have you noticed that sometimes
//    your browser does not ask you if you want the form entries to be 
//    remembered? This simple script turns on the remembering feature on all
//    websites.
//
//    Copyright (C) 2011-2014  Agron Selimaj & flossk.org
//
//    This program is free software: you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation, either version 3 of the License, or
//    (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program.  If not, see <http://www.gnu.org/licenses/>.

setTimeout(function(){setAutoCompleteOn()},1000);

function setAutoCompleteOn()
{
  document.title = document.title + " //";
  
  for(var i=0;i<document.forms.length;i++)
  {
		  document.forms[i].autocomplete = 'on';
		  formparts = document.forms[i].elements;
		  for(j=0; j<formparts.length; ++j)
		  {
			  part = formparts[j];
			  part.attributes["autocomplete"].value = "on";
		  }
  }
}



function setAutoCompleteOff()
{ 
}