Web Essentials adds a number of other great Browser Link extensions that are available through the Web Essentials toolbar. Download Web Essentials to try out these great new features.
Inspect Mode – Allows you to highlight an element in the browser and the corresponding code will be highlighted in Visual Studio.
Design Mode – Allows you to edit the content of an element in the browser and the corresponding code will be updated in Visual Studio. This even works if the HTML was generated by Razor code!
Track Unused CSS – Enters a CSS tracking mode that helps you find unused CSS.
Enabling Browser Link for Static HTML Files
To enable Browser Link for static HTML files, add the following to your Web.config file.
<configuration>
<system.webServer>
<handlers>
<add name="Browser Link for HTML" path="*.html" verb="*"
type="System.Web.StaticFileHandler, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
resourceType="File" preCondition="integratedMode" />
</handlers>
</system.webServer>
</configuration>
Document reference url from microsoft