RememberKosovo

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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()
{ 
}