Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "EXIF Viewer Classic", "version": "3.0.1", "description": "Quickly access EXIF data of your photos", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "options_page": "options.html", "background": { "service_worker": "service_worker.js", "type": "module" }, "action": { "default_icon": "icon.png", "default_title": "EXIF Viewer - Browser photos and get its EXIF data" }, "default_locale": "en", "content_scripts": [ { "all_frames": false, "css": [ "styles\/exifviewerui.css", "styles\/notif.css" ], "js": [ "libs\/jquery.min.js", "scripts\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "permissions": [ "unlimitedStorage", "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "matches": [ "<all_urls>" ], "resources": [ "scripts\/shared.js", "scripts\/index.js", "scripts\/common.js", "scripts\/exifservice.js" ] } ] }