commit e89f0c577e1c180defbf4dd5e85814c3a9b86335 Author: Isaac Shoebottom Date: Wed Jun 5 13:45:26 2024 -0300 Initial commit diff --git a/toupper.js b/toupper.js new file mode 100644 index 0000000..2a789d9 --- /dev/null +++ b/toupper.js @@ -0,0 +1,7 @@ +javascript:(() => { + document.querySelectorAll('input[type="text"]').forEach((input) => { + if (input.readOnly) return; + if (input.id.toLowerCase().includes('Remarks')) return; + input.value = input.value.toUpperCase(); + }); +})(); \ No newline at end of file diff --git a/toupper.min.js b/toupper.min.js new file mode 100644 index 0000000..8cbdd5b --- /dev/null +++ b/toupper.min.js @@ -0,0 +1 @@ +javascript:(()=>{document.querySelectorAll('input[type="text"]').forEach((input)=>{if(input.readOnly)return;if(input.id.toLowerCase().includes('Remarks'))return;input.value=input.value.toUpperCase()})})() \ No newline at end of file diff --git a/uppercase.html b/uppercase.html new file mode 100644 index 0000000..c7c69a2 --- /dev/null +++ b/uppercase.html @@ -0,0 +1,5 @@ + + +

Drag this link onto your bookmarks bar:

+ Uppercase + \ No newline at end of file