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": 2, "name": "ZoomStats", "description": "Derive statistics from zoom session transcripts", "version": "0.6.1", "icons": { "32": "icon\/enabled_32.png", "64": "icon\/enabled_64.png", "128": "icon\/enabled_128.png", "256": "icon\/enabled.png" }, "background": { "persistent": false, "page": "background.html" }, "page_action": { "default_icon": { "32": "icon\/disabled_32.png", "64": "icon\/disabled_64.png", "128": "icon\/disabled_128.png", "256": "icon\/disabled.png" }, "default_title": "Zoom Stats", "default_popup": "popup.html" }, "permissions": [ "activeTab", "declarativeContent", "https:\/\/*.zoom.us\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.zoom.us\/recording\/detail*" ], "js": [ "zoomstats.min.js" ] } ] }