Revious
Revious

Reputation: 8156

How to show / unhide Web Essential bar from chrome?

I've checked autohide and the bar disappeared but now how can I see it again?

Upvotes: 52

Views: 15166

Answers (6)

Daniaal
Daniaal

Reputation: 922

Note, this feature is no longer available in Visual Studio 2017 update 3 as the author, madskristensen states:

It was removed for several reasons.

  1. It interfered too much with the DOM of the running page
  2. It didn't work when the various features were split out into their own extension
  3. I build this Chrome extension to replace it

Link to image of evidence is below.(Not enough rep to show image on post)

Author of web essentials explaining why the tool bar is not suitable for the browser

Link to issue on github

Upvotes: 1

Dariusz Szczepaniak
Dariusz Szczepaniak

Reputation: 196

There is a WebEssentials2015-Settings.json file which contains default settings for web essentials (e.g. for VS2015 it is \AppData\Roaming\Microsoft\VisualStudio\14.0\WebEssentials2015-Settings.json). After I clicked autohide the only way for me to bring the web essentials menu back in the browsers was to edit this file setting the ShowMenu to true ("ShowMenu": true). That fixed the issue for me.

One note though, this file seems to be read on VS startup so you may need to restart VS to see the difference. Also these settings can be separately set for each solution (Web Essentials > Create solution settings). This option creates the .json file specific for given solution.

Upvotes: 0

Chris Halcrow
Chris Halcrow

Reputation: 31990

To see the Web Essentials menu in Chrome when using Visual Studio 2015:

Upvotes: 21

wjm03
wjm03

Reputation: 201

Note that you have to have BrowserLink enabled. Otherwise Ctrl doesn't do anything.

Upvotes: 8

FabianVal
FabianVal

Reputation: 373

CTRL works inside of Internet explorer as well.

Upvotes: 18

Revious
Revious

Reputation: 8156

It's enough to press CTRL from inside Chrome.

Upvotes: 78

Related Questions