as title says i wish to change the value of a textfield in the current website.
Basicly it enters a certan user and pass on a certan website, both will be stoerd in the prefrences.
then the script will check if the website is the correct it will logon and click submit.
also (sorry for merging 2 questions) is it possible to get WMI data from within a firefox extension , i can do it in VBscript.
Thankyou
This is my basic idea/script:
Basicly it enters a certan user and pass on a certan website, both will be stoerd in the prefrences.
then the script will check if the website is the correct it will logon and click submit.
also (sorry for merging 2 questions) is it possible to get WMI data from within a firefox extension , i can do it in VBscript.
Thankyou
This is my basic idea/script:
Code:
var CURL = (get url sumhow, will reasearch later);
var Uname = (get user frm prefs);
var Pass = (get pass from prefs);
if (CURL = (url i want)) {
document.forms[0].TEXTFIELD1.value = Uname
document.forms[0].TEXTFIELD2.value = Pass
document.forms[0].submit()
}
Comment