GBF调整窗口宽度

GBF调整窗口宽度,需要先设置成移动端user agent比如iphone

// ==UserScript==
// @name         GBF调整窗口宽度
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  GBF调整窗口宽度,需要先设置成移动端user agent比如iphone
// @author       Ai
// @match        *://game.granbluefantasy.jp/*
// @match        *://gbf.game.mbga.jp/*
// @icon         http://game.granbluefantasy.jp/favicon.ico
// @run-at       document-body
// @grant        none
// ==/UserScript==

(function() {
    // Your code here...
    'use strict';
    var deviceRatio = window.innerWidth / 320;
    var html = document.getElementsByTagName('html')[0];
    html.style.zoom = deviceRatio;


})();