Remove autocomplete=off

Removes the attribute autocomplete=off of forms and inputs.

目前为 2016-11-15 提交的版本。查看 最新版本

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

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

QingJ © 2025

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