惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
Cisco Talos Blog
Cisco Talos Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
D
Docker
S
SegmentFault 最新的问题
博客园 - 聂微东
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
GbyAI
GbyAI
L
LangChain Blog
Vercel News
Vercel News
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
Engineering at Meta
Engineering at Meta
T
Threat Research - Cisco Blogs
T
Threatpost
Scott Helme
Scott Helme
T
Tailwind CSS Blog
Latest news
Latest news
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
The Register - Security
The Register - Security
罗磊的独立博客
P
Proofpoint News Feed
腾讯CDC
S
Schneier on Security
雷峰网
雷峰网
A
About on SuperTechFans
T
Tenable Blog
F
Full Disclosure
Cyberwarzone
Cyberwarzone
博客园_首页
有赞技术团队
有赞技术团队
K
Kaspersky official blog

Comments for Tech Journey

Comment on Chrome / Edge Disables .CRX Installed Extensions (Workarounds to Turn On) by YourBelief Comment on How to Decrypt an Enrypted SSL RSA Private Key (PEM / KEY) by plsa Comment on Unrecognised Disk Label When Creating Partition by Edson Andrade Comment on Cannot Connect to CIFS / SMB / Samba Network Shares & Shared Folders in Windows 10 by Jackson De Marco Comment on Install Microsoft .NET Framework 1.1 on Windows 10 / 8 / 7 / Vista (Fix RegSvcs.exe Error) by Kyle Comment on How to Convert SRT to Create 3D Subtitles (ASS or SUB/IDX) by Bob Comment on How to Allow Local Network When Using WireGuard VPN Tunnel in Windows 10 by Moohamat Thoiruddin Fix Windows Not Remember & Save Folder Types or Folder Views Setting (Increase BagMRU Size Cache Memory Size) How to Change the Logo of vBulletin Forum to Custom Image
Remove Disable Developer Mode Extensions Warning Popup in Chrome / Edge
LK · 2020-05-27 · via Comments for Tech Journey
Skip to content
Remove Disable Developer Mode Extensions Warning Popup in Chrome / Edge

If you’re apps developer or extensions developer for Chrome and Edge web browser who have to test your extensions, or you’ve sideloaded and installed any third-party custom extensions that are not published on the official Chrome Web Store or Microsoft Edge Add-ons Store (for Edge Chromium), the browser will pop up a “disable developer mode extensions” warning on browser launch, with message similar to figure below.

Disable developer mode extensions

Extensions running in developer mode can harm your computer. If you’re not a developer, you should disable these extensions running in developer mode to sstay safe.
Disable Developer Mode Extensions Warning

Disable developer mode extensions

Extensions running in developer mode can harm your computer. If you’re not a developer, you should turn off any extensions running in developer mode.
Disable Developer Mode Extensions

The warning popup is a security feature built into Chrome and Edge browser to safeguard the users against malware and malicious add-ons, and cannot be disabled. However, as a workaround, you can use browser enterprise policy to whitelist the custom extensions that you manually installed to Chrome or Edge so that they’re trusted and allowed automatically without the developer mode extensions popup warning on browser startup.

This tutorial will show you how to put an extension into a whitelist or allowed-list which forces the web browser to override default Chrome or Edge policy that blacklists all unauthorized extensions, which results in stoppage of disabling developer mode extensions popup message.

  1. Go to the following URL in the address bar (or open Extensions from Chrome menu -> More tools or Extensions from Edge menu).

    Chrome: chrome://extensions/
    Edge: edge://extensions/

  2. Toggle Developer mode to On.
  3. Click on Pack extension button.
  4. Click Browse button and select the root directory of the extension to pack for Extension root directory field.

    You can ignore the “Private key file (optional)” field if this is your first time packing the extension, and the extension packing process will automatically generate a private key file in .pem extension. Save the private key file safely if you want to repack the same extension for new versions and update the previously installed extension (having the same ID, which is important for next steps) instead of installing as new extension.

  5. Hit Pack extension button when done. A .crx (extension) and a .pem (private key) file will be generated.
  6. Drag and drop the .crx file into the Extensions page to install it.
  7. After installed, locate the newly installed plugin in the Extensions page. The extension should be disabled by Chrome / Edge with error stating “This extension is not listed in the Chrome Web Store and may have been added without your knowledge” in Chrome or “This extension is not from any known source, and may have been added without your knowledge” in Edge.

    Record the ID of the extension, which is in the format of long string, e.g. abcdefghijklmnopqrstuvwxyz.

  8. Run Registry Editor (regedit).
  9. Navigate to the following registry key:

    Chrome: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome
    Edge: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge

  10. For Chrome, right click on Chrome and select New -> Key, and name the new key as ExtensionInstallWhitelist.

    For Edge, right click on Edge and select New -> Key, and name the new key as ExtensionInstallAllowlist.

    Note: Ignore this step if the key is already existed.

  11. Right click on the new key created (i.e. ExtensionInstallWhitelist or ExtensionInstallAllowlist), and select New -> String Value. Name the new value with a sequential number, starting with 1, 2, 3, and so on. So if it’s the first extension to be allowed, name the new value as “1”.
  12. For the value data, enter the ID of the extension you copied from step above so that the values look like:

    1 REG_SZ abcdefghijklmnopqrstuvwxyz

  13. Restart the browser and the developer mode extensions warning popup should not be displayed again.

If you have many Chromium-based web browsers, and don’t mind to have some DLL files patched, Chrome Developer Mode Extension Warning Patcher is a third-party utility that can patch the chrome.dll file to disable developer mode extension warning popup. In addition, the tool also can restore the https:// and www in the URL shown in the omnibox address bar, which are removed from the browser automatically.

Chromium Patcher

Chrome Developer Mode Extension Warning Patcher works in every 64-bit (x64) and 32-bit (x86) Chromium-based browsers, including Chrome, Edge, Brave, Opera, Vivaldi, Blisk, Colibri, Epic Browser and Iron Browser and more. In fact, it automatically scans and discovers all chrome.dll files of the all installed Chromium browsers, though you can select which browsers that you want to apply the patch.

Download Chrome Developer Mode Extension Warning Patcher from github.com. Note that you need to re-apply the patch after every browser upgrade, as the patched DLL will be replaced during upgrading.

Go to Top