Last active
January 30, 2018 17:29
-
-
Save twinkfrag/b27f1a33d1848bc47bd69501a3870a8a to your computer and use it in GitHub Desktop.
あいりすミスティリア!だけのウインドウを作る
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* in about:config | |
dom.disable_window_open_feature.location = false; | |
dom.disable_window_open_feature.status = false; | |
browser.link.open_newwindow.restriction = 1; | |
*/ | |
// if "location=no" in FireFox, url is in titlebar. | |
window.open("http://pc-play.games.dmm.com/play/imys/", null, "width=1280,height=720,scrollbars=no,location=yes"); | |
window.open("http://pc-play.games.dmm.co.jp/play/imys_r", null, "width=1280,height=720,scrollbars=no,location=yes"); | |
// in new window's console | |
// resize consider scaling | |
window.innerWidth = 1280; | |
window.innerHeight = 720; | |
// enter | |
window.scrollTo(0, 100); | |
// in ifr's console | |
{ | |
let wgl = document.getElementsByClassName("L-webgl_wrapper")[0]; | |
wgl.style.width = "auto"; | |
wgl.style.marginLeft = "-25px"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment