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": "Job Application Automator", "short_name": "JobAuto", "version": "1.0", "description": "Automate job applications on platforms like LinkedIn and Dice.", "permissions": [ "activeTab", "tabs", "storage" ], "host_permissions": [ "https:\/\/*.linkedin.com\/*", "https:\/\/*.indeed.com\/*", "https:\/\/*.monster.com\/*", "https:\/\/*.dice.com\/*", "http:\/\/localhost:4000\/*", "https:\/\/infinityandbeyond1.netlify.app\/*" ], "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*" ], "js": [ "linkedin.js" ] }, { "matches": [ "https:\/\/*.indeed.com\/*" ], "js": [ "indeed.js" ] }, { "matches": [ "https:\/\/*.monster.com\/*" ], "js": [ "monster.js" ] }, { "matches": [ "https:\/\/*.dice.com\/*" ], "js": [ "dice.js" ] } ], "action": { "default_popup": "src\/popup.html" }, "icons": { "48": "\/icon48.png", "128": "\/icon128.png" } }