Created
October 9, 2020 09:52
-
-
Save shinmai/8a4600a326dfac6ab58ef4f4eaa1e97d to your computer and use it in GitHub Desktop.
Crunchyroll login fix UserScript
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
| // ==UserScript== | |
| // @name Unfuck Crunchyroll Login | |
| // @namespace http://aapo.rip/ | |
| // @version 0.1 | |
| // @description remove bogus password validation from Crunchyroll's login form | |
| // @author @shinmai | |
| // @match https://www.crunchyroll.com/login | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| document.querySelector("#login_form_password").removeAttribute("pattern") | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment