/*
* @title <->zoom 1/2
* @description toggle zoom (Forked)
* @include http://*
* @license MIT License
* @require
* @see http://let.hatelabo.jp/Trapezoid/let/gYC-ycuCy6KDOw (Fork of)
*/
var zoom = document.body.style.zoom;
document.body.style.zoom = (zoom == 0.5) ? 1 : 0.5;