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": "Fillr AI \u2013 Instantly Autofill Job Applications Using AI", "description": "AI-powered job application autofill extension", "version": "1.0", "icons": { "16": "fillr-16.png", "32": "fillr-32.png", "48": "fillr-48.png", "128": "fillr-128.png" }, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_title": "Fillr AI - Auto-fill forms", "default_popup": "src\/popup\/popup.html", "default_icon": { "16": "fillr-16.png", "32": "fillr-32.png", "48": "fillr-48.png", "128": "fillr-128.png" } }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "content_scripts": [ { "js": [ "content.tsx.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" }, { "js": [ "web-app-bridge.ts-loader.js" ], "matches": [ "http:\/\/localhost:3000\/*", "https:\/\/www.fillr.me\/*", "https:\/\/fillr.me\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "content.tsx.js" ], "use_dynamic_url": false }, { "matches": [ "http:\/\/localhost:3000\/*", "https:\/\/fillr.me\/*", "https:\/\/www.fillr.me\/*" ], "resources": [ "extensionAuth.js", "web-app-bridge.ts.js" ], "use_dynamic_url": false } ] }