This file contains hidden or 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
(function() { | |
'use strict'; | |
let waitForFirstClick = 4000; | |
let activitySelector = 'button._8058._8059'; | |
let turnOffSelector = 'button._7exk._81vn'; | |
let confirmSelector = 'button._271k._271m._1qjd._7tvm._7tv2._7tv4'; | |
let activity = document.querySelector(activitySelector); |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am cmeza on github. | |
* I am cmeza (https://keybase.io/cmeza) on keybase. | |
* I have a public key ASBu3tCKG4xWhmVrDOSXGF_kqjhTe_dXThSrK-CIeOSuCQo | |
To claim this, I am signing this object: |
This file contains hidden or 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
var gulp = require('gulp'); | |
var fs = require('fs'); | |
var randomStr = require('randomstring'); | |
// pick where you want the file to land | |
var destinationDir = '.'; | |
// remove the file each time before generating a new one | |
gulp.task('clean-cache-buster', function() { | |
return gulp.src([destinationDir + '/cache.buster']) |