Chromeの拡張機能を作成しています。
h抜きリンクなんかを開けるようにするものなのですが
入れた状態でグーグルで検索をすると何度も勝手に再読み込みされます
どうすればいいでしょうか
javascript
1$(function(){ 2 const reg = new RegExp(/((h?)(ttps?://[a-zA-Z0-9.\-_@:/~?%&;=+#',()*!]+))/, "gi"); 3 $('body :not(script)').contents().filter(function(){ 4 return this.nodeType === 3; 5 }).replaceWith(function(){ 6 return this.nodeValue.replace(reg, "<a href='h$3'>$1</a>") 7 }) 8})
json
1{ 2 "manifest_version":2, 3 "name":"ttl", 4 "version":"1.0", 5 "content_scripts":[ 6 { 7 "matches":[ 8 "http://*/*", 9 "https://*/*" 10 ], 11 "js":[ 12 "jquery-3.5.1.min.js", 13 "content.js" 14 ] 15 } 16 ] 17 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/19 01:52
2020/12/21 16:11
2020/12/25 15:39
2020/12/28 15:54
2020/12/30 11:01