改良版

// ==UserScript==
// @name zoom html
// @include *
// @exclude http://*.nicovideo.jp/*
// @exclude http://www.yahoo.co.jp/
// @exclude http://www.google*
// @type SleipnirScript
// ==/UserScript==

(function(){

document.body.style.zoom=eval(0.8);
var element = document.createElement('div');
element.innerHTML = "100%";
element.id = "id";
element.style.cursor = 'hand';
element.style.backgroundColor = 'black';
element.style.position = 'absolute';
element.style.zIndex = '1';
element.style.top = '0px';
element.style.right = '0px';
element.style.width = '50px';
element.style.height = '20px';
element.style.color = 'white';
element.style.textAlign = 'center';
var objBody = document.getElementsByTagName("body").item(0);
objBody.appendChild(element);
// body要素にdivエレメントを追加

})();

右上に縮小表示を解除するボタンをつけた。

全カテゴリ内 前後記事

カテゴリ内 前後記事

カテゴリ内記事

PR

Loading...