https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
| local mp = require 'mp' | |
| local autovsr_enabled = false | |
| local function autovsr() | |
| local display_width = mp.get_property_native("display-width") | |
| local video_width = mp.get_property_native("width") | |
| local display_height = mp.get_property_native("display-height") | |
| local video_height = mp.get_property_native("height") | |
| if video_width and display_width and video_height and display_height then |
| #!/bin/bash | |
| LOG_FILE="chess_script.log" | |
| log() { | |
| echo "$(date '+%Y-%m-%d %H:%M:%S') - $1" | tee -a "$LOG_FILE" | |
| } | |
| # Requesting sudo privileges at the start | |
| log "Requesting sudo privileges..." |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| // ==UserScript== | |
| // @name animelon-subtitle-downloader | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description download animelon subtitles | |
| // @author mescyn#5794 | |
| // @match https://animelon.com/video/* | |
| // @grant unsafeWindow | |
| // @grant GM_registerMenuCommand | |
| // @require https://cdn.jsdelivr.net/npm/[email protected]/dist/FileSaver.min.js |
| # vim: set ft=python: | |
| # see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645 | |
| # source: https://github.com/mpv-player/mpv/issues/2149 | |
| # source: https://github.com/mpv-player/mpv/issues/566 | |
| # source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
| import vapoursynth | |
| core = vapoursynth.get_core() |