<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel rdf:about="https://let.hatelabo.jp/mhrs/rss">
    <link>https://let.hatelabo.jp/mhrs/rss</link>
    <description></description>
    <title>Bookmarklets from mhrs</title>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://let.hatelabo.jp/mhrs/let/gYC-yo7m4-iueg"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/mhrs/let/gYC-xfmm6rXBYQ"/>
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://let.hatelabo.jp/mhrs/let/gYC-yo7m4-iueg">
    <link>https://let.hatelabo.jp/mhrs/let/gYC-yo7m4-iueg</link>
    <dc:date>2012-07-11T14:23:36Z</dc:date>
    <description></description>
    <dc:creator>mhrs</dc:creator>
    <title>[Let] Delete Selection</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Fmhrs%2Flet%2FgYC-yo7m4-iueg.bookmarklet.js%20%28arg%29%22.replace%28%2F%28%5CS%2B%29%5Cs%2B%28%5CS%2A%29%2F%2Cfunction%28s%2Curl%2Carg%29%7Bs%3Ddocument.createElement%28%22script%22%29%3Bs.charset%3D%22utf-8%22%3Bs.src%3Durl%2B%22%3Fs%3D%22%2BencodeURIComponent%28arg%29%3Bdocument.body.appendChild%28s%29%7D%29%3Bvoid%280%29%3B"&gt;Delete Selection&lt;/a&gt;&lt;pre&gt;/*
 * @title       Delete Selection
 * @include     *
 * @author      MORIYAMA Hiroshi &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt;
 * @published   2012-07-11
 * @license     Public Domain
 */

(function(){
  var selection = window.getSelection();
  if (selection) {
    range = selection.getRangeAt(0);
    range.deleteContents();
  }
})();
&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/mhrs/let/gYC-xfmm6rXBYQ">
    <link>https://let.hatelabo.jp/mhrs/let/gYC-xfmm6rXBYQ</link>
    <dc:date>2012-06-09T04:38:07Z</dc:date>
    <description>表の中で内容が "如月千早" 又は "千早" だけの枡目を持つ行のみを表示する。&lt;URL:http://imas-db.jp/song/idol/chi.html&gt; での使用を想定且つ推奬。要CSS(※ウェブページのスタイルシートを無效にしてゐると效果がありません)。</description>
    <dc:creator>mhrs</dc:creator>
    <title>[Let] 表を「如月千早」でフィルタ</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Fmhrs%2Flet%2FgYC-xfmm6rXBYQ.bookmarklet.js%20%28arg%29%22.replace%28%2F%28%5CS%2B%29%5Cs%2B%28%5CS%2A%29%2F%2Cfunction%28s%2Curl%2Carg%29%7Bs%3Ddocument.createElement%28%22script%22%29%3Bs.charset%3D%22utf-8%22%3Bs.src%3Durl%2B%22%3Fs%3D%22%2BencodeURIComponent%28arg%29%3Bdocument.body.appendChild%28s%29%7D%29%3Bvoid%280%29%3B"&gt;表を「如月千早」でフィルタ&lt;/a&gt;&lt;pre&gt;/*
 * @title       表を「如月千早」でフィルタ
 * @version     0.2.2
 * @description 表の中で内容が &amp;quot;如月千早&amp;quot; 又は &amp;quot;千早&amp;quot; だけの枡目を持つ行のみを表示する。&amp;lt;URL:http://imas-db.jp/song/idol/chi.html&amp;gt; での使用を想定且つ推奬。要CSS(※ウェブページのスタイルシートを無效にしてゐると效果がありません)。
 * @include     http://*
 * @license     MIT License
 * @author      MORIYAMA Hiroshi &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt; (Twitter: @moriyama164, Hatena: mhrs)
 * @copyright   © 2012 MORIYAMA Hiroshi
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * &amp;quot;Software&amp;quot;), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED &amp;quot;AS IS&amp;quot;, WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

(function(){
  var xpath = &amp;quot;descendant::table/descendant::tr[&amp;quot;
    + &amp;quot;not(descendant::th)&amp;quot;
    + &amp;quot;and count(descendant::td[&amp;quot;
    + &amp;quot;          translate(., ' \t\r\n\u00a0\u3000', '') = '\u5982\u6708\u5343\u65E9'&amp;quot;
    + &amp;quot;          or translate(., ' \t\r\n\u00a0\u3000', '') = '\u5343\u65E9'])&amp;quot;
    + &amp;quot;    = 0]&amp;quot;
  var nodes = document.evaluate(xpath, document, null, 6, null);
  for (var i = 0, node; i &amp;lt; nodes.snapshotLength; i++) {
    node = nodes.snapshotItem(i);
    node.style.setProperty(&amp;quot;display&amp;quot;, &amp;quot;none&amp;quot;, &amp;quot;important&amp;quot;);
    node.style.setProperty(&amp;quot;font-size&amp;quot;, &amp;quot;0&amp;quot;, &amp;quot;important&amp;quot;);
    node.style.setProperty(&amp;quot;visibility&amp;quot;, &amp;quot;hidden&amp;quot;, &amp;quot;important&amp;quot;);
    node.style.setProperty(&amp;quot;z-index&amp;quot;, &amp;quot;-9393&amp;quot;, &amp;quot;important&amp;quot;);
  }
})();

/// ChangeLog:

// 2012-06-09  MORIYAMA Hiroshi  &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt;
//
// 	* スタイルシートの設定で setAttribute() の代りに
// 	style.setProperty() を使ふやう變更。
//
// 	* Version 0.2.2
//
// 2012-06-08  MORIYAMA Hiroshi  &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt;
//
// 	* 要素をDOM木から削除するのではなくCSSで非表示とするだけにした。
//
// 	* ChangeLog内で &amp;quot;Version&amp;quot; に併記してゐる公開日時を訂正。
//
// 	* Version 0.2.1
//
// 2012-06-08  MORIYAMA Hiroshi  &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt;
//
// 	* &amp;quot;如月千早&amp;quot; だけでなく &amp;quot;千早&amp;quot; もフィルタの對象に追加。
//
// 	* ChangeLogコメントを追加。
//
// 	* 先頭のコメント内に &amp;quot;@version&amp;quot; を追加。
//
//      * コメントの微修正。
//
// 	* Version 0.2.0 (2012/06/08 05:56:27 UTC)
//
// 2012-06-08  MORIYAMA Hiroshi  &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt;
//
// 	* 正しく動作しないバグを修正。
//
// 	* Version 0.1.1 (2012/06/08 05:12:02 UTC)
//
// 2012-06-08  MORIYAMA Hiroshi  &amp;lt;hiroshi@kvd.biglobe.ne.jp&amp;gt;
//
// 	* Hatena::Letで公開。MIT Licenseを附與。
//
// 	* Version 0.1.0 (2012/06/08 04:49:49 UTC)
&lt;/pre&gt;</content:encoded>
  </item>
</rdf:RDF>
