Remove autocomplete=off

Removes the attribute autocomplete=off of forms and inputs.

// ==UserScript==
// @name        Remove autocomplete=off
// @namespace   remove-autocomplete-off
// @version     2
// @description Removes the attribute autocomplete=off of forms and inputs.
// @grant none
// @include *
// ==/UserScript==

Array.prototype.forEach.call(document.querySelectorAll('[autocomplete]'), function(el){
    el.setAttribute('autocomplete', 'on');
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址