Ryan Malloy 7d97fc3e3b test: add react-devtools-demo extension artifacts from testing session
Generated during browser_install_popular_extension testing to verify
Chrome extension functionality works correctly.

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-22 00:03:28 -06:00

10 lines
350 B
JavaScript

// React DevTools Hook Injector
console.log('🔧 React DevTools Demo - Injecting React detection hook');
// Inject the React DevTools hook
const script = document.createElement('script');
script.src = chrome.runtime.getURL('hook.js');
script.onload = function() {
this.remove();
};
(document.head || document.documentElement).appendChild(script);