Version 1.2.1 View in Chrome Web Store
https://clients2.google.com/service/update2/crx |
{ "name": "Axure Cloud Extension", "icons": { "16": "cloud_16.png", "32": "cloud_32.png", "64": "cloud_64.png", "128": "cloud_128.png" }, "action": { "default_icon": "cloud_16.png", "default_title": "Axure Cloud Screenshot Extension" }, "version": "1.2.1", "commands": { "shortcutScreenshot": { "description": "Create Screenshot via Keyboard", "suggested_key": { "mac": "Ctrl+Shift+1", "default": "Ctrl+Shift+1" } } }, "background": { "type": "module", "service_worker": "background.js" }, "update_url": "https://clients2.google.com/service/update2/crx", "description": "Capture screenshots of your prototype to attach to Axure Cloud comments. When commenting, click the camera icon to add a screenshot.", "permissions": [ "tabs" ], "content_scripts": [ { "js": [ "axScreenshot.js" ], "run_at": "document_end", "matches": [ "<all_urls>" ], "all_frames": true } ], "host_permissions": [ "<all_urls>" ], "manifest_version": 3 }