Inspect and view changes in Linkedin Data Scrapper 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
{
"name": "Linkedin Data Scrapper",
"version": "1.2",
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "linkedin-data@digitalops.org"
}
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"48": "icons/linkedin.png"
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/linkedin.png",
"default_popup": "background/popup.html"
},
"permissions": [
"identity",
"storage",
"tabs",
"notifications",
"*://www.googleapis.com/*",
"*://accounts.google.com/*"
],
"options_ui": {
"page": "options/options.html"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"content.js"
]
},
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"batch.js"
]
}
]
}