File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
packages/react-devtools-extensions/src Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,10 @@ window.addEventListener('message', function(evt) {
3131 reactBuildType : evt . data . reactBuildType ,
3232 } ;
3333 chrome . runtime . sendMessage ( lastDetectionResult ) ;
34-
35- // Inject the backend. This is done in the content script to avoid CSP
36- // and Trusted Types violations, since content scripts can modify the DOM
37- // and are not subject to the page's policies.
3834 } else if ( evt . data . source === 'react-devtools-inject-backend' ) {
39- // the prototype stuff is in case document.createElement has been modified
35+ // The backend is injected by the content script to avoid CSP and Trusted Types violations,
36+ // since content scripts can modify the DOM and are not subject to the page's policies.
37+ // The prototype stuff is in case document.createElement has been modified.
4038 const script = document . constructor . prototype . createElement . call (
4139 document ,
4240 'script' ,
You can’t perform that action at this time.
0 commit comments