- HAR Viewer http://ericduran.github.io/chromeHAR/
- Wildcard DNS for LAN http://xip.io/
Last active
March 17, 2016 10:20
-
-
Save jcisio/6ee54cbd00c41c99f222 to your computer and use it in GitHub Desktop.
Daily tools
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
// List checked checkboxes | |
(function () { | |
var checkboxes = document.querySelectorAll('[checked=checked]'); | |
for (var i = 0; i < checkboxes.length; ++i) { | |
console.log(checkboxes[i].name); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment