CISTポータル内のURLをクリック可能にする
Zoomの招待リンクやアンケートのURLがリンクされてほしい
2024/01/07 追記
この問題は、既存の拡張機能を使うことで解消できますt6o_o6t.icon
Clickable Links
https://chromewebstore.google.com/detail/clickable-links/mgamelhnfokapndfdodnmfiningckjia?hl=ja
参考)テキストURLをリンク化するChrome拡張機能「Clickable Links」 - Love is destructive.
/icons/hr.icon
Chrome拡張機能
Content Scriptsで書く
スクリプトを挿入するページのURL
https://portal.mc.chitose.ac.jp/portal2/*
概要
querySelectorAllで、URLを含みうる要素を特定する
以下のセレクタ
各要素について、textConentのうちURLをa要素に置換する
この方法だと問題がありそう
https://github.com/coolwind0202/portalext/issues/1
ログイン画面のaタグなどが破壊される
instanceof Textがtrueなものにのみ置換処理は実行されるべきである
https://stackoverflow.com/questions/10730309/find-all-text-nodes-in-html-page
document.createTreeWalker
https://github.com/whatwg/dom/issues/147
NodeIteratorやTreeWalkerがfor文で処理できない
nextNodeをyieldするようなジェネレーターを書いて解決しているコメントがある