Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Visualize Environment Variables", "version": "1.3", "description": "Extracts nuxt env and state from the current website", "permissions": [ "storage" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "128": "icon.png" }, "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "<all_urls>" ] } ], "action": { "default_popup": "popup.html" } }