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": "Solvely.ai - AI Homework Helper", "description": "Get homework help with screenshots. Crop questions and get step-by-step solutions from Solvely.ai.", "version": "0.0.2", "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "host_permissions": [ "<all_urls>" ], "permissions": [ "storage", "activeTab", "tabs" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Solvely.ai", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.solvely.ai\/*", "*:\/\/0.0.0.0\/*", "*:\/\/127.0.0.1\/*", "*:\/\/localhost\/*", "*:\/\/solvely.ai\/*" ], "run_at": "document_end", "js": [ "content-scripts\/probe.js" ], "world": "ISOLATED" }, { "matches": [ "<all_urls>" ], "js": [ "content-scripts\/screenshot.js" ] } ], "web_accessible_resources": [ { "resources": [ "content-scripts\/screenshot.css" ], "matches": [ "<all_urls>" ] } ] }