blob: a8f63c406d4b9c9609ad7275489aeab3f2cf0ce8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// ==UserScript==
// @name Fix Input Dark Theme
// @author Jesús E. & Enmanuel E.
// @namespace fixForMyDarkTheme
// @description Scan all inputs and add a inherit color option for not blind inputs in your dark theme
// @homepageURL https://libregit.spks.xyz/heckyel/book/src/branch/master/scripts-greasemonkey
// @include *
// @grant none
// @version 0.0.1
// @license GPL version 3 or any later version::: https://www.gnu.org/licenses/gpl-3.0.html
// ==/UserScript==
/* jshint esversion: 6 */
function fixForMyDarkTheme(){
let i, inputs;
inputs = document.getElementsByTagName('input');
for (i = 0; i < inputs.length; i++) {
inputs[i].style.color='inherit';
}
}
fixForMyDarkTheme();
// ohm ... m(-_-)m ... thanks
|