方法は次のとおりです。(少なくとも、そのとき試した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.")})();
次に、ログインページに移動し、ブックマークレットをクリックして[OK]をクリックし、ログインすると、数秒後にパスワードの保存ボックスが表示されます。それが誰かまたはOPに役立つことを願っています。