LastPassIgnore

Pause LastPass for now..

目前為 2019-02-15 提交的版本,檢視 最新版本

// ==UserScript==
// @name         LastPassIgnore
// @namespace    cfm
// @version      1.0
// @description  Pause LastPass for now..
// @author       CFM
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function () {
    console.log('Adding LastPass Ignore on all input type text or password.');
    let inputs = document.querySelectorAll('input[type=text], input[type=password]');
    for(let input of inputs) {
        input.setAttribute('data-lpignore', 'true');
    }
})();