Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1947)
+++ _whatsnew.html	(working copy)
@@ -62,6 +62,9 @@
 			IE6 bug which causes floating dialogs to appear blank after opening it for the first time.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2136">#2136</a>] Fixed JavaScript error in IE 
 			when opening the bullet list properties dialog.</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>
 		Version 2.6</h3>
Index: editor/_source/internals/fckxhtml_gecko.js
===================================================================
--- editor/_source/internals/fckxhtml_gecko.js	(revision 1947)
+++ editor/_source/internals/fckxhtml_gecko.js	(working copy)
@@ -99,3 +99,15 @@
 		return node ;
 	}
 }
+
+if ( FCKBrowserInfo.IsGecko )
+{
+	FCKXHtml.TagProcessors['link'] = function( node, htmlNode )
+	{
+		if ( htmlNode.href.substr(0, 9).toLowerCase() == 'chrome://' )
+			return false ;
+
+		return node ;
+	}
+
+}
\ No newline at end of file
