Reputation: 31
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?
Upvotes: 3
Views: 4252
Reputation: 180
On chrome://flags
press the Reset All
button.
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