Utility_Apps/Chrome/Zoom SVG/manifest.json
2025-09-10 09:31:12 -05:00

15 lines
No EOL
332 B
JSON

{
"manifest_version": 3,
"name": "SVG Zoomer",
"version": "1.0",
"description": "Zoom in and out of SVGs using the mouse wheel.",
"permissions": ["scripting"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}