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",
"description": "Helps in managing Linkedin profile by adding them in multiple custom buckets",
"version": "1.1.1",
"manifest_version": 3,
"name": "LinkedIn Profile Management",
"author": "[email protected]",
"icons": {
"16": "icons\/icon.png",
"32": "icons\/icon.png",
"48": "icons\/icon.png",
"64": "icons\/icon.png",
"128": "icons\/icon.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
]
}