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": "Easy Apply Automater", "version": "1.1.1", "description": "Automate the easy apply process on LinkedIn job listings.", "action": { "default_icon": { "16": "images\/icon16.png", "36": "images\/icon36.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs" ], "host_permissions": [ "https:\/\/www.linkedin.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "background.html", "logo.png", "popup_text.js" ], "matches": [ "<all_urls>" ] } ], "options_ui": { "page": "settings.html", "open_in_tab": true }, "background": { "service_worker": "background.js" } }