Skip to content

Instantly share code, notes, and snippets.

@erikvold
Created March 3, 2014 07:16
Show Gist options
  • Save erikvold/9319897 to your computer and use it in GitHub Desktop.
Save erikvold/9319897 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @id bugzilla.mozilla.org-b9491ced-55b7-7249-89de-319b54e4a4d1@erikvold
// @name Bugzilla - Input type text
// @version 1.0
// @namespace erikvold
// @author Erik Vold
// @description
// @include https://bugzilla.mozilla.org/show_bug.cgi?id=*
// @run-at document-end
// ==/UserScript==
Array.slice(document.querySelectorAll('.text_input')).forEach(node => {
if (!node.hasAttribute('text')) {
node.setAttribute('type', 'text');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment