就是这样。(至少它在我当时尝试过的HTTPS站点上工作-ifttt.com)-确实是autocomplete = on事情,但是iirc我尝试了该扩展名,但没有任何改变。相反,请使用这种较轻的解决方案。
只需保存一个书签,将以下javascript代码作为url数据即可:
javascript:(function(){var ca,cea,cs,df,dfe,i,j,x,y;function n(i,what){return i+" "+what+((i==1)?"":"s")}ca=cea=cs=0;df=document.forms;for(i=0;i<df.length;++i){x=df[i];dfe=x.elements;if(x.onsubmit){x.onsubmit="";++cs;}if(x.attributes["autocomplete"]){x.attributes["autocomplete"].value="on";++ca;}for(j=0;j<dfe.length;++j){y=dfe[j];if(y.attributes["autocomplete"]){y.attributes["autocomplete"].value="on";++cea;}}}alert("Removed autocomplete=off from "+n(ca,"form")+" and from "+n(cea,"form element")+", and removed onsubmit from "+n(cs,"form")+". After you type your password and submit the form, the browser will offer to remember your password.")})();
然后进入登录页面,单击小书签并单击确定,登录,然后几秒钟后将弹出保存密码框。希望对别人或OP有帮助。