💡 Add jshint to all user scripts

This commit is contained in:
Dan Jones 2020-06-05 14:48:01 -05:00
commit 8766d09bc0
12 changed files with 34 additions and 18 deletions

View file

@ -3,9 +3,11 @@
// @namespace danielrayjones
// @description Plays Cookie Clicker for you
// @include http://orteil.dashnet.org/cookieclicker/
// @version 0.0.3
// @version 0.0.4
// ==/UserScript==
/* jshint esversion: 6 */
let AutoClicker = {stop: false};
unsafeWindow.AutoClicker = AutoClicker;
@ -28,7 +30,7 @@ window.addEventListener('load', function () {
console.log('clicking', shimmer);
shimmer.click();
});
})
});
});
shimmerObserver.observe(shimmers, { childList: true});