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": "Organize LinkedIn Contacts in Lists - LinkedList",
"version": "1.0",
"description": "Save LinkedIn profiles to custom lists.",
"permissions": [
"storage",
"scripting",
"tabs"
],
"host_permissions": [
"https:\/\/www.linkedin.com\/*"
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/in\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"128": "icon.png"
}
}