0
I have some Userscripts and would like to run on my Windows Phone, but there is no app for WP like Greasemonkey or Tampermonkey.
Then I came up with a crazy idea but I believe it will work: Create a bookmarklet that when I call downloads the saved Userscript on some server and runs it.
To test in WP I created a Bookmark with the "URL": javascript:alert(location.href);
, and when I call this Bookmark it shows me the address of the current website in Alert, blz.
So the idea would be +- this:
javascript:$.get("http://x.com/userscript.js", function(data, status){ //Aqui faria a "execução" o código baixado });
Good as always has a however, I do not know how I do to run the code that was downloaded, someone can give me some idea?
Grateful!
Can you run Firefox on WP? Nowadays you can install add-ons on FF mobile
– brasofilo