(First h's omitted in this question purposefully to save links allowed)
ok so i was browsing crunchyroll vids and noticed it naturally goes to 480 whenever i click a video. crunchyroll's video player seems to be the only one that ever lags on this setting so i immediately click the "SD" button to go to "standard" which refreshes the page and places "?p360=1" on the end of the address i was at previously... i.e:
ttp://www.crunchyroll.com/rwby/episode-4-lessons-learned-687889
is redirected to=
ttp://www.crunchyroll.com/rwby/episode-4-lessons-learned-687889?p360=1
notice the thing at the "?p360=1" at the end is the only difference of these addresses? so i googled redirecting one webpage to another and came across the stackoverflow answer (https://stackoverflow.com/a/14576139/5760879) that was answered with something so similar to what i needed it just begs to ask:
can i do this answer but instead of
redirectToPage("ttp://www.youtube.com/", "ttp://www.google.com");
can i get it to act like
redirectToPage("***Whatever address i was on****", "***Whatever address i was on****?p360=1");
this way i can just change the @match http:///
to
@match ttp://www.crunchyroll.com/(asterisk)/(asterisk)
-asterisks were being ignored in preview for some derp reason-
the goal is to redirect all crunchyroll videos to its "sd" quality setting webpage if possible - if not doable this way perhaps another way?