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": "AutoFill Extension", "description": "extension for job applications autofill", "version": "1.0.7", "background": { "service_worker": "\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": ".\/iconGradient.png" }, "icons": { "16": "IconBlue.png", "32": "IconBlue.png", "64": "IconBlue.png", "128": "IconBlue.png", "512": "IconBlue.png" }, "web_accessible_resources": [ { "resources": [ "iframeApply.html", "iframeJobDescription.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] }, { "resources": [ "public\/*" ], "matches": [ "<all_urls>" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "autofill.js", "companydata.js", "userdata.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js", "exeManager.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "activeTab", "storage", "unlimitedStorage", "tabs" ] }