View imdb-links.js
(function() { | |
let window_code = findCode(window.location.pathname); | |
if (window_code && window_code.includes('tt')) { | |
openbj(window_code); | |
// openrarbg(window_code); | |
} | |
let all_buttons = document.querySelectorAll("a"); | |
for (let button of all_buttons) { | |
if (button.href.includes('/tt')) { | |
button.addEventListener('click', clickHandler); |
View download-images.sh
#!/bin/bash | |
INPUT="links.txt" | |
while read line ; | |
do | |
curl -O $line &> /dev/null | |
done < $INPUT | |
exit |
View steam-autoremove.js
const removeBtn = '.item_market_action_button'; | |
const confirmBtn = '#market_removelisting_dialog_accept'; | |
let sell = document.querySelector(removeBtn); | |
sell.classList = []; | |
var start = setInterval(function(){ | |
cancelSale(); | |
},2000); |
View binge.js
console.log('funcao de autoplay ativada'); | |
setInterval(loopEvento, 10000); | |
function loopEvento(){ | |
document.querySelector('video').addEventListener('ended',proximo,false); | |
function proximo(e) { | |
document.querySelector('.video-item.active').nextSibling.click(); | |
} | |
} |