新しいFirefox Developer Editionブラウザのコピーをダウンロードし、開発ツールをいじり始めました。
リンクとスクリプトの一部がchrome://
URLを介して読み込まれており、Google Chromeに登録されていると思いました。
これらの行の一部を具体的に示します。
<link id="favicon" rel="icon" type="image/png" href="chrome://branding/content/icon32.png"></link>
<link rel="stylesheet" type="text/css" media="all" href="chrome://browser/content/searchSuggestionUI.css"></link>
<link rel="stylesheet" type="text/css" media="all" defer="defer" href="chrome://browser/content/abouthome/aboutHome.css"></link>
<script type="text/javascript;version=1.8" src="chrome://browser/content/abouthome/aboutHome.js"></script>
<script type="text/javascript;version=1.8" src="chrome://browser/content/searchSuggestionUI.js"></script>
クロムアセットをハイジャックしているかどうかは疑問でしたが、これらのスクリプトの1つをチェックアウトした後、Mozillaのコメントを見つけました。
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
カスタムプロトコルについて、またはそれらがどのように登録または使用されるかについてはあまり知りません。何が起きてる?