Inspect and view changes in Resume Exporter for Recruiters source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Resume Exporter for Recruiters",
"description": "Export profiles and resumes of all applicants in a job posting",
"version": "4.2",
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"64": "64.png",
"128": "128.png"
},
"action": {
"default_popup": "index.html",
"default_icon": "128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://www.linkedin.com/hiring/jobs/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/hiring/jobs/*"
],
"js": [
"content.js"
]
}
]
}