Skip to content

Instantly share code, notes, and snippets.

@shizone
Created September 15, 2013 16:05
Show Gist options
  • Save shizone/6572029 to your computer and use it in GitHub Desktop.
Save shizone/6572029 to your computer and use it in GitHub Desktop.
Developer Consoleからコード突っ込んでクッキークリックしまくるやつ
var cookie = document.getElementById("bigCookie");
var e = document.createEvent("MouseEvents");
e.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false,
false, false, false, 0, null);
window.setInterval( function() {
cookie.dispatchEvent(e);
}, 0)
@shizone
Copy link
Author

shizone commented Sep 15, 2013

あ、Chromeで動作確認してます

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment