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", "default_locale": "en", "name": "__MSG_appTitle__", "description": "__MSG_appDesc__", "version": "1.0.2", "manifest_version": 3, "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_title": "Web Screenshot", "default_icon": "icon32.png" }, "commands": { "visible_screenshot": { "suggested_key": { "default": "Alt+Shift+V" }, "description": "Visible Screenshot" }, "desktop_screenshot": { "suggested_key": { "default": "Alt+Shift+D" }, "description": "Desktop Screenshot" } }, "permissions": [ "scripting", "activeTab", "tabs", "storage", "downloads", "desktopCapture", "notifications" ], "options_page": "options.html", "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "contentScript.js" ] } ] }