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>
This commit is contained in:
Ryan Malloy 2025-08-22 00:03:28 -06:00
parent b480bc9328
commit 7d97fc3e3b
8 changed files with 238 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
"manifest_version": 3,
"name": "React Developer Tools (Demo)",
"version": "5.0.0",
"description": "Demo version of React Developer Tools - adds React DevTools functionality",
"permissions": [
"activeTab",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["inject.js"],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"devtools_page": "devtools.html",
"web_accessible_resources": [
{
"resources": ["hook.js"],
"matches": ["*://*/*"]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "React DevTools"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}