/*
* @title testlet
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require
*/
var body = document.getElementsByTagName("body")[0];
body.style.backgroundColor = "#ccc";
var p = document.createElement("p");
p.style.color = "red";
p.style.fontWeight = "bold";
p.style.fontSize = "24px";
p.appendChild(document.createTextNode("hello world!"));
body.appendChild(p);