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": "LinkedIn Auto Connect",
"version": "2.0",
"description": "Automatically connects with people on LinkedIn search results",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"https:\/\/www.linkedin.com\/*"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/search\/results\/people\/*"
],
"js": [
"content.js",
"upgrade_popup.js"
],
"css": [
"content_styles.css"
]
}
],
"options_page": "settings.html"
}