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": "Soda PDF Viewer: Edit, Convert, Compress PDF files", "short_name": "Soda PDF Viewer", "description": "Edit and read any PDF files in Chrome. Soda PDF is the ultimate online PDF editor and viewer for any device!", "version": "1.0.2.87", "manifest_version": 3, "icons": { "16": "assets\/images\/logo_16.png", "19": "assets\/images\/logo_19.png", "48": "assets\/images\/logo_48.png", "128": "assets\/images\/logo_128.png" }, "action": { "default_popup": "index.html" }, "web_accessible_resources": [ { "resources": [ "favicon.ico", "open-dialog.html" ], "matches": [ "<all_urls>" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*.sodapdf.com\/robots.txt*", "https:\/\/*.sodapdf.com\/*\/robots.txt*" ], "run_at": "document_end", "js": [ "content-script.js" ] }, { "matches": [ "file:\/\/\/*.pdf" ], "run_at": "document_end", "js": [ "pdf-interceptor.js" ] }, { "matches": [ "<all_urls>" ], "run_at": "document_end", "js": [ "dom-listener.js" ] } ], "permissions": [ "tabs", "cookies", "storage", "webRequest", "webNavigation", "system.display" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js", "type": "module" } }