ワイルドアームズのアプリが公開されたので、テキストをWAっぽくするブックマークレットでも作る
11460 ワード
昔によく遊んだので、懐かしくって……(˘ω˘)
多分、需要は自分にしかないんじゃないかな!
jsを実装!
xtu.js
(function (baseDom) {
const change = function (text) {
return text.replace(/っ([!!])/g, function (m, p1) { return "ッ" + p1; }).replace(/([^<ッ!!??])([!!])/g, function (m, p1, p2) { return p1 + "ッ" + p2; });
}
const replace = function (dom) {
if (["IFRAME", "SCRIPT", "NOSCRIPT", "STYLE"].indexOf(dom.tagName) >= 0) {
return;
}
if (dom.children.length > 0) {
Array.from(dom.children).forEach(replace)
} else if (dom.innerText && dom.innerText.trim().length > 0) {
dom.innerText = change(dom.innerText);
}
}
replace(baseDom);
})(window.document.body)
xtu.js
(function (baseDom) {
const change = function (text) {
return text.replace(/っ([!!])/g, function (m, p1) { return "ッ" + p1; }).replace(/([^<ッ!!??])([!!])/g, function (m, p1, p2) { return p1 + "ッ" + p2; });
}
const replace = function (dom) {
if (["IFRAME", "SCRIPT", "NOSCRIPT", "STYLE"].indexOf(dom.tagName) >= 0) {
return;
}
if (dom.children.length > 0) {
Array.from(dom.children).forEach(replace)
} else if (dom.innerText && dom.innerText.trim().length > 0) {
dom.innerText = change(dom.innerText);
}
}
replace(baseDom);
})(window.document.body)
scriptタグだけは書き換えずにエラーにならないようにしてみる。
ng.html
<h1>
ほげほげ!
<span>ふがふが!</span>
</h1>
ただこれだと、上みたいなサイトで上手くいかないんだよな……どうしたものかな。
最小化!
minify.js
(function(a){const c=function(d){return d.replace(/っ([!!])/g,function(e,f){return"ッ"+f}).replace(/([^<ッ!!??])([!!])/g,function(e,g,f){return g+"ッ"+f})};const b=function(d){if(["IFRAME","SCRIPT","NOSCRIPT","STYLE"].indexOf(d.tagName)>=0){return}if(d.children.length>0){Array.from(d.children).forEach(b)}else{if(d.innerText&&d.innerText.trim().length>0){d.innerText=c(d.innerText)}}};b(a)})(window.document.body);
ブックマークレット用のURLを作成!
javascript:(function(a){const c=function(d){return d.replace(/っ([!!])/g,function(e,f){return"ッ"+f}).replace(/([^<ッ!!??])([!!])/g,function(e,g,f){return g+"ッ"+f})};const b=function(d){if(["IFRAME","SCRIPT","NOSCRIPT","STYLE"].indexOf(d.tagName)>=0){return}if(d.children.length>0){Array.from(d.children).forEach(b)}else{if(d.innerText&&d.innerText.trim().length>0){d.innerText=c(d.innerText)}}};b(a)})(window.document.body);;
ブックマークへの登録!
minify.js
(function(a){const c=function(d){return d.replace(/っ([!!])/g,function(e,f){return"ッ"+f}).replace(/([^<ッ!!??])([!!])/g,function(e,g,f){return g+"ッ"+f})};const b=function(d){if(["IFRAME","SCRIPT","NOSCRIPT","STYLE"].indexOf(d.tagName)>=0){return}if(d.children.length>0){Array.from(d.children).forEach(b)}else{if(d.innerText&&d.innerText.trim().length>0){d.innerText=c(d.innerText)}}};b(a)})(window.document.body);
javascript:(function(a){const c=function(d){return d.replace(/っ([!!])/g,function(e,f){return"ッ"+f}).replace(/([^<ッ!!??])([!!])/g,function(e,g,f){return g+"ッ"+f})};const b=function(d){if(["IFRAME","SCRIPT","NOSCRIPT","STYLE"].indexOf(d.tagName)>=0){return}if(d.children.length>0){Array.from(d.children).forEach(b)}else{if(d.innerText&&d.innerText.trim().length>0){d.innerText=c(d.innerText)}}};b(a)})(window.document.body);;
ブックマークへの登録!
chromeであればブックマークツールバーから、上のような形で登録ができるよ!
試さずにはいられない!
ちょっと感嘆符の勢いが足りない公式サイトでも
この通り!!
感想!
こんなことをやっていないでイベントを回ってこよう🧛
Author And Source
この問題について(ワイルドアームズのアプリが公開されたので、テキストをWAっぽくするブックマークレットでも作る), 我々は、より多くの情報をここで見つけました https://qiita.com/fumihiko-hidaka/items/b3d98df0b3bedd445b35著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .