I try to automatically enter users into websites, given their username and password. To do this, I use the Chrome extension, where each page will load my script content, which will try to find out where the username and password fields are, and then send.
The content of the script loads jQuery and for the search I am doing something along these lines:
$("input[type=password]") OR $(".password") OR $("#password")
This usually works, but on sites such as Facebook or Gmail, it fails (although it shouldn't). I suspect this is because they are already using some internal jQuery version that does not do the same.
How to fix it? Perhaps changing the jQuery dollar sign that I upload to another corrects this, because then it will not conflict with the internal version of jQuery. Is it possible?
source
share