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
/** | |
* FILL OUT FORM WITH RANDOM DATA | |
* | |
* This bookmarklet makes a best effort to fill out a form with random junk data | |
* that probably can pass some pretty permissive validation. Not everything is | |
* currently implemented. | |
* | |
* It follows the these rules: | |
* <input> | |
* === "TEXT-LIKE" TYPES === |
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
/** | |
* RESTORE COPY/CUT/PASTE FUNCTIONALITY TO WEBPAGES | |
* | |
* Sometimes cut, copy, and paste are blocked by genius web developers or their | |
* super genius boss, who think that blocking these features actually works, as | |
* though a webpage was somehow an application running in "the cloud" that they | |
* have control over, rather than a jumped up text document running entirely on | |
* the user's machine. | |
* | |
* Worse, some think that it's somehow "more secure" if you can't paste a |