I just downloaded a copy of the new Firefox Developer Edition browser and started to fiddle around with the dev tools.
I noticed that some of the links and scripts were loaded over chrome:// urls, which I thought were registered for Google Chrome.
Here are some of those lines in specific.
<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>
I wondered whether they were hijacking chrome assets, but after checking out one of those scripts, I found a Mozilla comment.
/* 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/. */
I don't know much about custom protocols or how they are registered or used. What's going on here?
