I hereby claim:
- I am kirisakow on github.
- I am kirisakow (https://keybase.io/kirisakow) on keybase.
- I have a public key ASC1-IDTsmUakcGVf5xfNVJn_c9qJ02YU81CsIg2ygP8_Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name onlyShowThese.user.js | |
| // @description Declutter a webpage by telling which elements you want to leave visible — a JavaScript user script for Firefox's Greasemonkey, Chrome's Tampermonkey or Opera's Violetmonkey. The script uses a prompt to ask the user for a CSS selector for those of the DOM elements the user wants to leave visible. | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| var selector = prompt( | |
| `Type in a CSS selector query (documentation: https://w3c.github.io/csswg-drafts/selectors/) for the elements you want visible. | |
| For example, to show only p elements, but not p of class ad, type in "p, p *, -p.ad". |
| // ==UserScript== | |
| // @name updateNowPlayingSongInfo.user.js | |
| // @description UserScript for hotmixradio.com that forces an update of the currently played song's info. Hotmixradio.com native update mechanism actually lags a big deal. | |
| // @include https://hotmixradio.com/* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| var has_my_function_completed_at_least_once = false; | |
| const api_call_interval_in_ms = 5000; |
| // ==UserScript== | |
| // @name unfoldCollapsed.user.js | |
| // @description Automatically unfold collapsed sections on webpages. | |
| // @version 1 | |
| // @grant unsafeWindow | |
| // @include https://www.apec.fr/* | |
| // @include https://nofluffjobs.com/* | |
| // @include https://choisirleservicepublic.gouv.fr/* | |
| // @include https://www.welcometothejungle.com/* | |
| // ==/UserScript== |