Skip to content

Instantly share code, notes, and snippets.

@shinmai
Created October 9, 2020 09:52
Show Gist options
  • Select an option

  • Save shinmai/8a4600a326dfac6ab58ef4f4eaa1e97d to your computer and use it in GitHub Desktop.

Select an option

Save shinmai/8a4600a326dfac6ab58ef4f4eaa1e97d to your computer and use it in GitHub Desktop.
Crunchyroll login fix UserScript
// ==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