https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
#!/bin/bash | |
# Prompts the user for a URL if not provided as a command-line argument. | |
# Extracts the ID from the given URL to use in API requests. | |
function promptForURL() { | |
local url="$1" | |
until [ -n "$url" ]; do | |
read -p "URL: " url | |
done | |
id=$(sed 's|.*gofile.io/d/||g' <<< "$url") |
#!/bin/bash | |
url="$1" | |
file_names="${@:2}" | |
read -ra file_names_list <<< "$file_names" | |
#prompt for url if not provided | |
until [ ! -z "$url" ] ; do | |
read -p "url=" url |
#!/bin/bash | |
url="$1" | |
#prompt for url if not provided | |
until [ ! -z "$url" ] ; do | |
read -p "url=" url | |
done | |
id=$(sed 's|.*gofile.io/d/||g' <<< "$url") |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching