<?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/tacamy/rss">
    <link>https://let.hatelabo.jp/tacamy/rss</link>
    <description></description>
    <title>Bookmarklets from tacamy</title>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://let.hatelabo.jp/tacamy/let/hJmcqZOa3P1K"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/tacamy/let/hJmcqaSe2uJ_"/>
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://let.hatelabo.jp/tacamy/let/hJmcqZOa3P1K">
    <link>https://let.hatelabo.jp/tacamy/let/hJmcqZOa3P1K</link>
    <dc:date>2013-09-24T21:58:23Z</dc:date>
    <description>楽天市場の商品ページでこれを使うと、縦に長すぎるページでも購入ボタンまで一気にジャンプできるので指がつかれない。</description>
    <dc:creator>tacamy</dc:creator>
    <title>[Let] [楽天] 購入ボタン遠い</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Ftacamy%2Flet%2FhJmcqZOa3P1K.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 [楽天] 購入ボタン遠い
 * @description 楽天市場の商品ページでこれを使うと、縦に長すぎるページでも購入ボタンまで一気にジャンプできるので指がつかれない。
 * @include http://*
 * @license MIT License
 * @require jquery
 */

(function() {
	var $item = $('.item_name');
	if ( $item.length ) {
		$('html, body').animate({
			scrollTop: $item.position().top
		}, 300, 'linear');
	} else {
		alert('このページでは使えないよ〜(；・∀・)');
	}
})();&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/tacamy/let/hJmcqaSe2uJ_">
    <link>https://let.hatelabo.jp/tacamy/let/hJmcqaSe2uJ_</link>
    <dc:date>2013-09-24T21:44:49Z</dc:date>
    <description>楽天市場の商品ページでこれを使うと、そのショップの送料を画面下部に読み込める。</description>
    <dc:creator>tacamy</dc:creator>
    <title>[Let] [楽天] 送料分かりづらい</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Ftacamy%2Flet%2FhJmcqaSe2uJ_.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 [楽天] 送料分かりづらい
 * @description 楽天市場の商品ページでこれを使うと、そのショップの送料を画面下部に読み込める。
 * @include http://*
 * @license MIT License
 * @require jquery
 * @require https://raw.github.com/padolsey/jquery.fn/master/cross-domain-ajax/jquery.xdomainajax.js
 */

(function($) {
	var shopname = location.pathname.split('/')[1];
	var url = 'http://www.rakuten.co.jp/' + shopname + '/info2.html';
	
	$.get(url, function(data) {

		var $shipping = $('&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;').addClass('mod-shipping');
		var $content = $('&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;').addClass('mod-shipping-content');
		var $close = $('&amp;lt;div&amp;gt;CLOSE&amp;lt;/div&amp;gt;').addClass('mod-shipping-close');

		var $data = $(data.responseText)
			.find('font:contains(&amp;quot;配送について&amp;quot;)')
			.parent()
			.nextUntil('hr');

		if ($data.length) {

			$shipping
				.css({
					'display': 'none',
					'position': 'fixed',
					'bottom': '0',
					'left': '0',
					'z-index': '2147483648',
					'height': '500px',
					'border': '7px solid #bf0000',
					'background': '#fff'
				});

			$content
				.css({
					'height': '500px',
					'overflow': 'auto'
				})
				.html($data)
				.appendTo($shipping);

			$close
				.css({
					'position': 'absolute',
					'top': '0',
					'right': '0',
					'width': '80px',
					'height': '30px',
					'line-height': '30px',
					'text-align': 'center',
					'background': '#bf0000',
					'color': '#fff',
					'font-weight': 'bold',
					'font-size': '16px',
					'cursor': 'pointer'
				})
				.appendTo($shipping);

			$shipping
				.appendTo('body')
				.fadeIn('slow');

			$(document).delegate('.mod-shipping-close', 'click', function() {
				$shipping.fadeOut();
			});

		} else {

			alert('このページでは使えないよ〜(；・∀・)');

		}
	});

})(jQuery);&lt;/pre&gt;</content:encoded>
  </item>
</rdf:RDF>
