chrome extensions showing as “blocked by administrator” or being prevented from installing are usually blocked by a group policy – either from your organization if this is a managed device, or from a stray policy setting on a personal PC. here’s how to handle both.
Why extensions get blocked
On managed/work/school computers: IT departments use Group Policy or Chrome’s enterprise management to control which extensions can be installed. This is intentional and you typically can’t bypass it on a device you don’t own.
On personal computers: This usually means a program (often adware, a previous malware infection, or aggressive “security” software) added Chrome policies to your registry that block extensions. This is the fixable case.
Check if policies are applied
Type chrome://policy in the address bar. If the page shows any active policies – particularly ones controlling extensions – policies are the cause. If the page is empty or shows no policies, something else is blocking the extension.
Fix for personal PCs with stray group policies
Open Command Prompt as administrator and run:
rd /s /q "%WinDir%\System32\GroupPolicy"
rd /s /q "%WinDir%\System32\GroupPolicyUsers"
gpupdate /force
This removes any locally applied group policies. Restart Chrome after running these commands.
Then check Registry Editor: HKEY_LOCAL_MACHINE\SOFTWARE/Policies/Google/Chrome – if this key exists with entries blocking extensions, delete the relevant entries or the entire Chrome key.
If a specific extension is listed as blocked
In chrome://policy, if you see an extension ID listed in a blocklist, note the ID and remove it from the registry path above.
Re-enable developer mode if blocked
Some policies block developer mode in Chrome extensions. To check: chrome://extensions > look for the Developer mode toggle in the top right. If it’s grayed out, it’s policy-controlled. The registry cleanup above addresses this too.
On managed devices
If this is a work or school computer, contact IT. Bypassing organizational policies on managed devices isn’t appropriate and may violate usage agreements.