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", "name": "Super Save Image As", "version": "1.0", "manifest_version": 3, "description": "Save images as png, jpg, or webp by right-clicking on an image. Adds a new context menu to save images in a variety of formats.", "background": { "service_worker": "scripts\/background.js" }, "action": { "default_icon": "images\/16x16.png", "default_title": "Super Save Image As", "default_popup": "popup.html" }, "permissions": [ "downloads", "contextMenus", "offscreen", "activeTab", "scripting", "storage" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content\/getImages.js" ], "run_at": "document_start" } ], "icons": { "48": "images\/48x48.png", "128": "images\/128x128.png" } }