<?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/Outrast/rss">
    <link>https://let.hatelabo.jp/Outrast/rss</link>
    <description></description>
    <title>Bookmarklets from Outrast</title>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://let.hatelabo.jp/Outrast/let/jseL1dmygYAA"/>
        <rdf:li rdf:resource="https://let.hatelabo.jp/Outrast/let/jqWJtvXCgYAA"/>
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://let.hatelabo.jp/Outrast/let/jseL1dmygYAA">
    <link>https://let.hatelabo.jp/Outrast/let/jseL1dmygYAA</link>
    <dc:date>2022-12-04T05:04:23Z</dc:date>
    <description>見てるサイトでサイト内検索</description>
    <dc:creator>Outrast</dc:creator>
    <title>[Let] 見てるサイトでサイト内検索</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2FOutrast%2Flet%2FjseL1dmygYAA.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
 */

(() =&amp;gt; {
    const basePath = prompt(
        'Base path?',
        location.href
            .replace(/(.+\/)(.+)?$/, '$1')
            .replace(/^https?:\/\//, ''),
    );
    if (basePath === null) return;

    const q = prompt('Keyword?');
    if (!q) return;

    const newTab = confirm('New tab?');

    window.open(
        `https://www.google.com/search?q=${q}+site%3A${encodeURIComponent(basePath)}`,
        newTab ? '_blank' : '_self',
    );
})();
&lt;/pre&gt;</content:encoded>
  </item>
  <item rdf:about="https://let.hatelabo.jp/Outrast/let/jqWJtvXCgYAA">
    <link>https://let.hatelabo.jp/Outrast/let/jqWJtvXCgYAA</link>
    <dc:date>2022-10-12T08:54:59Z</dc:date>
    <description>my bookmarklet</description>
    <dc:creator>Outrast</dc:creator>
    <title>[Let] Amazon の商品ページからレビューをキーワード検索する</title>
    <content:encoded>&lt;a href="javascript:%22https%3A%2F%2Flet.st-hatelabo.com%2FOutrast%2Flet%2FjqWJtvXCgYAA.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;Amazon の商品ページからレビューをキーワード検索する&lt;/a&gt;&lt;pre&gt;/*
 * @title Amazon の商品ページからレビューをキーワード検索する
 * @description my bookmarklet
 * @include http://amazon.co.jp/*
 */

const baseUrl = &amp;quot;https://amazon.co.jp/product-reviews/&amp;quot; + location.href.match(/\/([A-Z0-9]{10,})(\/|\?|$)/)[0].replace(/[/?]/g, &amp;quot;&amp;quot;);
const word = prompt('keyword');

if (word) {
    location.href = `${baseUrl}/?filterByKeyword=${encodeURIComponent(word)}#reviews-container`;
}&lt;/pre&gt;</content:encoded>
  </item>
</rdf:RDF>
