左下のところに常に Cookie を表示しておくための Greasemonkey スクリプトです。
Web アプリの開発時とかに便利かもー、と思って作りました。
ソース
// ==UserScript==
// @name show cookie
// @namespace http://jugyo.org/
// @include http://*
// ==/UserScript==
(function() {
var content = document.createElement("div");
content.innerHTML = document.cookie.split(/;[ ]*/).join('
');
with (content.style) {
fontFamily = "verdana, sans-serif";
fontSize = "11px";
textAlign = "left";
margin = 0;
padding = "4px";
lineHeight = "15px";
color = "black";
backgroundColor = "gray";
MozOpacity = 0.60;
border = "none";
position = "fixed";
bottom = "0px";
left = "0px";
overflow = "auto";
}
document.body.appendChild(content);
})();













