🦆
Pinned Loading
-
-
-
-
Simple bookmarklet to rotate youtube...
Simple bookmarklet to rotate youtube videos 90 degrees both ways. 1/*
2Copy-paste the next line as an URL when you add a new bookmark in your browser:
3javascript:(function() { var d = document; var h = d.head; if(d.querySelector("style[id=xformRotStyle]") == null) { var l = d.createElement("style"); l.id = "xformRotStyle"; l.type = "text/css"; l.innerText = ".xformRot90 { transform: rotate(90deg) scale(56%); } .xformNegRot90 { transform: rotate(-90deg) scale(56%); }"; h.appendChild(l); } var el = d.querySelector(".video-stream"); if(!el) return; if(!el.classList.replace("xformRot90", "xformNegRot90")) { if(el.classList.contains("xformNegRot90")) { el.classList.toggle("xformNegRot90"); } else { el.classList.toggle("xformRot90"); } } })();
4*/
5 -
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.