Jobrain LinkedIn Prospects let you import your LinkedIn 1st degree connections directly to your Jobrain account
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": 2,
"name": "Jobrain LinkedIn Prospects",
"description": "Jobrain LinkedIn Prospects let you import your LinkedIn 1st degree connections directly to your Jobrain account",
"version": "1.0.8",
"author": "The Jobrain Team. support@jobrain.com",
"icons": {
"19": "src/icons/panel-icon-grayscale.png",
"128": "src/icons/playmarket-icon.png"
},
"browser_action": {
"default_icon": {
"19": "src/icons/panel-icon-grayscale.png",
"38": "src/icons/jobrain-site-logo-big.png"
},
"default_popup": "index.html"
},
"permissions": [
"notifications",
"tabs",
"<all_urls>",
"*://*/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/js/content.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"src/js/background.js"
]
}
}