Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ウィンドウのタイトルバーにテキストを追加できるようにしたいJavascriptで書かれたFirefox用の拡張機能があります。これは可能ですか?
document.title プロパティを使用して、ウィンドウのタイトルバーに表示されるページのタイトルを動的に変更できます。
<script type="text/javascript"> document.title += "The Text You Want To Add"; </script>