/*
* @title ページ内の特定の文字列を置換
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require
*/
const s=prompt("置換前の文字列","");const r=prompt("置換後の文字列","");void(document.body.innerHTML=document.body.innerHTML.replace(new RegExp(s,'g'),r));