Yay a devtools!

This commit is contained in:
2025-02-15 12:46:14 -07:00
parent 8e6294c96f
commit 9124abb749
9 changed files with 303 additions and 0 deletions

27
devtools/manifest.json Normal file
View File

@@ -0,0 +1,27 @@
{
"manifest_version": 2,
"name": "Context Stack DevTools",
"version": "1.0",
"description": "A devtools panel to view and edit context stack values.",
"devtools_page": "devtools.html",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"permissions": [
"devtools",
"tabs",
"*://*/*"
]
}