This file contains 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
#!/bin/bash | |
# cpx command is extremely useful in copying thousands of files and track the progress | |
# just do cpx source destination and you are good to go! | |
# Convert seconds to DD:HH:MM:SS format | |
convert_to_human_readable() { | |
local total_seconds=$1 | |
local days=$((total_seconds/86400)) |
This file contains 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
// NOTE! | |
// A lot of people have started using this script | |
// so I have moved it to following github: https://github.com/AniruddhaHumane/Netflix-Skipper | |
// You can get the latest updates there, which includes Extension so you don't have to paste it :) | |
// THIS GIST IS NO LONGER MAINTAINED | |
// You can copy and paste this in the console window of netflix to automatically skip intros and outros :) | |
function clickButton(dataUia) { |