OG Hateful
OG Hateful

Reputation: 31

Chrome Developer Tools disabled on Mac

I know questions on how to enable Chrome developer tools have been answered in the past but they are for Windows. I am on a Mac and the Developer Tools in grayed out and so is inspect element. How do I re-enable them on my mac?

Example 1

Example 2

Upvotes: 3

Views: 4252

Answers (1)

Aviv Dolev
Aviv Dolev

Reputation: 180

Solution 1 - Reset Chrome's Flags

On chrome://flags press the Reset All button.

Solution 2 - Modify Chrome's Policies

On chrome://policy we can see Chrome's current policies.

If DeveloperToolsDisabled is set to true, quit Chrome and open Terminal, set:

defaults write com.google.Chrome DeveloperToolsDisabled -bool false

If DeveloperToolsAvailability is set to 2, quit Chrome and open Terminal, set:

defaults write com.google.Chrome DeveloperToolsAvailability -int 0

Note: if you get an error message saying your browser is managed, then it means you are a part of an organization, and only your organization's IT person can help you.

Upvotes: 3

Related Questions