blob: b0aa32338da699920b7d95047c3c261261fcdfcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* SPDX-License-Identifier: CC0-1.0
*
* Copyright (C) 2025 Woj. Kosior <koszko@koszko.org>
*/
/*
#+begin_src manifest-jq
.matches = ["https://janessagarrow.com/*"]
#+end_src
*/
if (false) { /* #+begin_src background-js */
blockJsOnUrl("https://janessagarrow.com/*");
} /* #+end_src */
for (const elem of document.querySelectorAll('[style^="opacity:0"]')) {
elem.style.opacity = 1;
elem.style.transform = 'none';
}
|