Open mustafaabobakr opened 3 years ago
Encountered Same Issue
maybe you use file protocol because:
Download the React DevTools for a better development experience: https://reactjs.org/link/react-devtoolsYou might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq
Any solutions for this? I don't have a manifest.json nor a _meta folder
Per https://github.com/electron/electron/issues/23662 and https://github.com/electron/electron/pull/25198, you need to add allowFileAccess
option in newer versions of Electron, e.g.:
installExtension(
REACT_DEVELOPER_TOOLS,
{ loadExtensionOptions: { allowFileAccess: true } }
);
It was Required to remove _meta folder and modify manifest.json, To Add the extensions without errors!
manifest.json