Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1982)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1983)
@@ -82,4 +82,7 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2160">#2160</a>] "Match whole word" in the
 			Find and Replace dialog will now find words next to punctuation marks as well.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2162">#2162</a>] If the configuration is set
+			to work including the &lt;head&gt; (FullPage), references to stylesheets added by Firefox extensions
+			won't be added to the output.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/_source/internals/fckxhtml_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckxhtml_gecko.js	(revision 1982)
+++ /FCKeditor/trunk/editor/_source/internals/fckxhtml_gecko.js	(revision 1983)
@@ -100,2 +100,15 @@
 	}
 }
+
+if ( FCKBrowserInfo.IsGecko )
+{
+	// #2162, some Firefox extensions might add references to internal links
+	FCKXHtml.TagProcessors['link'] = function( node, htmlNode )
+	{
+		if ( htmlNode.href.substr(0, 9).toLowerCase() == 'chrome://' )
+			return false ;
+
+		return node ;
+	}
+
+}
