testlet

  • /*
     * @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);
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2010/07/16 20:53:27 - 2010-07-16