Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 29 additions & 6 deletions packages/extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,46 @@
{
"manifest_version": 3,
"name": "reviz",
"author": {
"email": "[email protected]"
},
"description": "Adds tools for reverse engineering data visualizations to Chrome Developer tools.",
"version": "0.5.0",
"devtools_page": "devtools/devtools.html",
"action": {
"default_icon": "reviz.png"
"default_icon": {
"16": "reviz-16.png",
"32": "reviz-32.png",
"48": "reviz-128.png",
"128": "reviz-128.png"
}
},
"icons": {
"16": "reviz-16.png",
"32": "reviz-32.png",
"48": "reviz-128.png",
"128": "reviz-128.png"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["inspect.js"],
"css": ["inspect.css"]
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"inspect.js"
],
"css": [
"inspect.css"
]
}
],
"background": {
"service_worker": "service-worker.js"
},
"sandbox": {
"pages": ["sandbox/sandbox.html"]
"pages": [
"sandbox/sandbox.html"
]
}
}
}
4 changes: 2 additions & 2 deletions packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp manifest.json public/reviz.png scripts/inspect.css dist",
"build": "tsc && vite build && cp manifest.json public/reviz-128.png public/reviz-48.png public/reviz-32.png public/reviz-16.png scripts/inspect.css dist",
"preview": "vite preview"
},
"dependencies": {
Expand Down Expand Up @@ -54,4 +54,4 @@
"typescript": "^5.1.6",
"vite": "^5.0.0"
}
}
}
Binary file added packages/extension/public/reviz-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/extension/public/reviz-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/extension/public/reviz-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/extension/public/reviz-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed packages/extension/public/reviz.png
Binary file not shown.