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
use std::path::PathBuf; | |
use structopt::StructOpt; | |
#[derive(StructOpt, Debug)] | |
struct Opt { | |
/// Activate verbose mode | |
#[structopt(short = "v", long = "verbose")] | |
verbose: bool, | |
/// File to generate |
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
{"lastUpload":"2020-07-31T02:11:17.481Z","extensionVersion":"v3.4.3"} |
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
let likesGiven = 0; | |
setInterval(() => { | |
let like = document.querySelector('article span.glyphsSpriteHeart__outline__24__grey_9'), | |
arrow = document.querySelector('a.coreSpriteRightPaginationArrow'); | |
if (like) { | |
like.click(); | |
likesGiven++ | |
} | |
arrow.click(); | |
console.log(`You've liked ${likesGiven} post(s)!`); |