Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 20, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LinkedIn Job Scraper",
"version": "1.0.0",
"description": "A chrome extension that scrapes LinkedIn job listings directly.",
"background": {
"service_worker": "service-worker.js"
},
"permissions": [
"sidePanel",
"tabs",
"scripting"
],
"host_permissions": [
"https:\/\/www.linkedin.com\/jobs\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/jobs\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_title": "Open LinkedIn Scraper"
},
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
}