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", "manifest_version": 3, "name": "ApplyAI", "version": "1.3.0", "description": "Automate job applications with AI-powered cover letters and auto-applying.", "permissions": [ "activeTab", "storage", "scripting", "contextMenus" ], "host_permissions": [ "https:\/\/*\/*" ], "background": { "service_worker": "src\/scripts\/background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "src\/scripts\/content.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "src\/pages\/popup.html", "default_title": "ApplyAI - Generate Cover Letter", "default_icon": { "16": "assets\/icons\/icon16.png", "32": "assets\/icons\/icon32.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" } }, "options_page": "src\/pages\/options.html", "icons": { "16": "assets\/icons\/icon16.png", "32": "assets\/icons\/icon32.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "src\/pages\/popup.html", "src\/pages\/preview.html" ], "matches": [ "<all_urls>" ] } ] }