<?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/arajun0904/rss">
    <link>https://let.hatelabo.jp/arajun0904/rss</link>
    <description></description>
    <title>Bookmarklets from arajun0904</title>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://let.hatelabo.jp/arajun0904/let/jcS44PT0gKAA"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/arajun0904/let/jYWe69zegqAA"/>
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://let.hatelabo.jp/arajun0904/let/jcS44PT0gKAA">
    <link>https://let.hatelabo.jp/arajun0904/let/jcS44PT0gKAA</link>
    <dc:date>2022-05-15T06:10:19Z</dc:date>
    <description>my bookmarklet</description>
    <dc:creator>arajun0904</dc:creator>
    <title>[Let] サンリオ人気投票でcookieを削除してまた投票できるようにするブックマークレット</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Farajun0904%2Flet%2FjcS44PT0gKAA.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;サンリオ人気投票でcookieを削除してまた投票できるようにするブックマークレット&lt;/a&gt;&lt;pre&gt;/*
 * @title サンリオ人気投票でcookieを削除してまた投票できるようにするブックマークレット
 * @description my bookmarklet
 * @license MIT License
 * @require 
 */

javascript:(function(){var d=document,c=d.cookie.split(';'),l=location,p=l.pathname+l.search,i,j;if(!c[0])c=[];for(i in c)for(j=1;j&amp;lt;=p.length;j++)d.cookie=c[i]+';expires=Thu, 01-Jan-1970 00:00:00;path='+p.substr(0,j);location.href='https://ranking.sanrio.co.jp/characters/'})()


&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/arajun0904/let/jYWe69zegqAA">
    <link>https://let.hatelabo.jp/arajun0904/let/jYWe69zegqAA</link>
    <dc:date>2022-02-06T01:48:47Z</dc:date>
    <description>ブックマークレットで動作するアプリランチャーです</description>
    <dc:creator>arajun0904</dc:creator>
    <title>[Let] bookmarklet-launcher</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2Farajun0904%2Flet%2FjYWe69zegqAA.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;bookmarklet-launcher&lt;/a&gt;&lt;pre&gt;/*
 * @title bookmarklet-launcher
 * @description ブックマークレットで動作するアプリランチャーです
 * @include https://*
 * @license MIT License
 * @require 
 */
(function() {
	if (document.getElementById('bookmarklet-launcher-modal')) {
		document.getElementById('bookmarklet-launcher-modal').remove();
	} else {

                /*アプリ設定*/
		var data = [{
			link: &amp;quot;https://youtube.com&amp;quot;,
			title: &amp;quot;youtube&amp;quot;
		}, {
			link: &amp;quot;https://www.amazon.co.jp&amp;quot;,
			title: &amp;quot;amazon&amp;quot;
		}, {
			link: &amp;quot;https://www.nicovideo.jp&amp;quot;,
			title: &amp;quot;ニコニコ&amp;quot;
		}]; 

		let modal = document.createElement('div');
		modal.id = &amp;quot;bookmarklet-launcher-modal&amp;quot;;
		modal.style =
			&amp;quot;position: fixed;top: 8px;right: 8px;padding:8px;background-color:#fff;border-radius: 8px;box-shadow: 0 3px 6px rgba(0,0,0,0.2);z-index:12345;color:black;font-size:medium;font-family:sans-serif;line-height: 1.5;&amp;quot;;
		let close = document.createElement('img');
		close.src = &amp;quot;https://icooon-mono.com/i/icon_11916/icon_119160_256.jpg&amp;quot;;
		close.style =
			&amp;quot;position:fixed;top:20px;right:20px;width:16px;height:16px;z-index:123456;&amp;quot;;
		close.onclick = function() {
			document.getElementById('bookmarklet-launcher-modal').remove();
		};
		let links = document.createElement('ul');
		links.id = &amp;quot;links&amp;quot;;
		links.style =
			&amp;quot;margin:0px;padding:0px;font-size: smaller;text-align: center;&amp;quot;;
		let title = document.createTextNode('Bookmarklet-Launcher 　');
		modal.appendChild(title);
		modal.appendChild(close);
		modal.appendChild(links);
		document.body.appendChild(modal);
		for (var i = 0; i &amp;lt; data.length; i++) {
			var text = data[i].title;
			var slicetext = text.length &amp;gt; 20 ? (text).slice(0, 16) + &amp;quot;…&amp;quot; : text;
			slicetext = document.createTextNode(slicetext);

			let elem = document.createElement('li');
			elem.style =
				&amp;quot;display: inline-block;width:64px;margin:0px 4px;word-break: break-all;vertical-align: top;position:relative;&amp;quot;;

			let ancher = document.createElement('a');
			ancher.href = data[i].link;

			let icon = document.createElement('img');
			icon.src = &amp;quot;https://www.google.com/s2/favicons?sz=256&amp;amp;domain_url=&amp;quot; + data[i]
				.link;
			icon.style =
				&amp;quot;vertical-align: middle;width:64px;height:64px;box-shadow: 0 3px 6px rgba(0,0,0,0.2);border-radius: 8px;	-webkit-transition:	all 0.2s ease;transition:all 0.2s ease;&amp;quot;;

			let = mask = document.createElement('div');
			mask.style =
				&amp;quot;width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;background-color:rgba(0,0,0,0.8);-webkit-transition:all 0.2s ease;transition:all 0.2s ease;border-radius: 8px;    display: grid;place-items: center; text-overflow: ellipsis;&amp;quot;;
			mask.onmouseover = function() {
				this.style.opacity = '0.8';
			};
			mask.onmouseout = function() {
				this.style.opacity = '0';
			};

			let name = document.createElement('p');
			name.style = &amp;quot;margin:0;padding:0;color:#fff;font-size:small;&amp;quot;;

			elem.appendChild(ancher);
			ancher.appendChild(icon);
			ancher.appendChild(mask);
			mask.appendChild(name);
			name.appendChild(slicetext);

			document.getElementById('links').appendChild(elem);
		};
	}
})();



&lt;/pre&gt;</content:encoded>
  </item>
</rdf:RDF>
