This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Disable Backdrop Filter Blur | |
| // @namespace https://www.github.com/Xornop | |
| // @version 1.1 | |
| // @description Verwijdert backdrop-filter blur op alle websites om prestaties te verbeteren. | |
| // @author Xornop | |
| // @match *://*/* | |
| // @grant GM_addStyle | |
| // @run-at document-start | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ghcr.io/cleanuparr/cleanuparr:latest | |
| USER root | |
| RUN apt-get update && apt-get install -y jq && rm -rf /var/lib/apt/lists/* | |
| ENTRYPOINT [] | |
| COPY run.sh / | |
| RUN chmod a+x /run.sh |