<?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/os0x/rss">
    <link>https://let.hatelabo.jp/os0x/rss</link>
    <description></description>
    <title>Bookmarklets from os0x</title>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://let.hatelabo.jp/os0x/let/gYC-yoT-tImhfg"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/os0x/let/gYC-xpO_gdLBCA"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/os0x/let/gYC-xpO93uu1BA"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/os0x/let/gYC-xpO6zJHBLA"/>
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://let.hatelabo.jp/os0x/let/gYC-yoT-tImhfg">
    <link>https://let.hatelabo.jp/os0x/let/gYC-yoT-tImhfg</link>
    <dc:date>2012-06-26T08:26:54Z</dc:date>
    <description>count up css selector</description>
    <dc:creator>os0x</dc:creator>
    <title>[Let] count up css selector</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Fos0x%2Flet%2FgYC-yoT-tImhfg.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;count up css selector&lt;/a&gt;&lt;pre&gt;/*
 * @title count up css selector
 * @description count up css selector
 * @include http://*
 * @license MIT License
 */

(function(each) {
  each.call(document.styleSheets, function(s){
    var t = 0;
    each.call(s.rules, function(r) {
      t += r.selectorText.split(',').length;
    });
    console.log(t, s.rules.length, s.href || 'inline');
  });
}(Array.prototype.forEach));&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/os0x/let/gYC-xpO_gdLBCA">
    <link>https://let.hatelabo.jp/os0x/let/gYC-xpO_gdLBCA</link>
    <dc:date>2010-05-15T12:28:50Z</dc:date>
    <description>画像へのリンクを抽出して現在のページを置き換えます(たぶん名前を付けて保存も可)</description>
    <dc:creator>os0x</dc:creator>
    <title>[Let] replace large images</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Fos0x%2Flet%2FgYC-xpO_gdLBCA.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;replace large images&lt;/a&gt;&lt;pre&gt;/*
 * @title replace large images
 * @description 画像へのリンクを抽出して現在のページを置き換えます(たぶん名前を付けて保存も可)
 * @include http://*
 * @license MIT License
 */
(function(){
var links = document.links;
var match = /\.(jpe?g|png|gif)(\?|$)/i;
var result = [];
for(var i in links){
	if(match.test(''+links[i])){
		result.push('&amp;lt;img src=&amp;quot;'+links[i]+'&amp;quot;&amp;gt;');
	}
}
document.open();
document.write('&amp;lt;html&amp;gt;&amp;lt;title&amp;gt;'+document.title+'&amp;lt;/title&amp;gt;&amp;lt;p&amp;gt;'+result.join('&amp;lt;br&amp;gt;')+'&amp;lt;/html&amp;gt;');
document.close();
})();&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/os0x/let/gYC-xpO93uu1BA">
    <link>https://let.hatelabo.jp/os0x/let/gYC-xpO93uu1BA</link>
    <dc:date>2010-05-15T12:23:55Z</dc:date>
    <description>画像へのリンクを抽出してポップアップにまとめて開きます(Firefoxなら名前を付けて保存も可)</description>
    <dc:creator>os0x</dc:creator>
    <title>[Let] open large images</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Fos0x%2Flet%2FgYC-xpO93uu1BA.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;open large images&lt;/a&gt;&lt;pre&gt;/*
 * @title open large images
 * @description 画像へのリンクを抽出してポップアップにまとめて開きます(Firefoxなら名前を付けて保存も可)
 * @include http://*
 * @license MIT License
 */
(function(){
var links = document.links;
var match = /\.(jpe?g|png|gif)(\?|$)/i;
var result = [];
for(var i in links){
	if(match.test(''+links[i])){
		result.push('&amp;lt;img src=&amp;quot;'+links[i]+'&amp;quot;&amp;gt;');
	}
}
var w=open('about:blank','_blank');
w&amp;amp;&amp;amp;w.document.write('&amp;lt;html&amp;gt;&amp;lt;title&amp;gt;'+document.title+'&amp;lt;/title&amp;gt;&amp;lt;p&amp;gt;'+result.join('&amp;lt;br&amp;gt;')+'&amp;lt;/html&amp;gt;');
w&amp;amp;&amp;amp;w.document.close();
})();&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/os0x/let/gYC-xpO6zJHBLA">
    <link>https://let.hatelabo.jp/os0x/let/gYC-xpO6zJHBLA</link>
    <dc:date>2010-05-15T11:11:37Z</dc:date>
    <description>oAutoPagerize bookmarklet</description>
    <dc:creator>os0x</dc:creator>
    <title>[Let] oAutoPagerize</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Fos0x%2Flet%2FgYC-xpO6zJHBLA.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;oAutoPagerize&lt;/a&gt;&lt;pre&gt;/*
 * @title oAutoPagerize
 * @description oAutoPagerize bookmarklet
 * @include http://*
 * @license GPLv3
 * @require http://ss-o.net/userjs/oAutoPagerize.js
 */
&lt;/pre&gt;</content:encoded>
  </item>
</rdf:RDF>
