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 Engagement Assistant",
"version": "2.5.0",
"description": "Automate LinkedIn engagement with team collaboration and analytics",
"permissions": [
"storage",
"alarms",
"tabs",
"scripting",
"background"
],
"host_permissions": [
"https:\/\/*.linkedin.com\/*",
"https:\/\/docs.google.com\/*",
"https:\/\/www.vietnamcos.com\/*",
"https:\/\/sheets.googleapis.com\/*"
],
"background": {
"service_worker": "background\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.linkedin.com\/*"
],
"css": [
"assets\/styles\/base.css",
"assets\/styles\/content.css"
],
"js": [
"lib\/xlsx.full.min.js",
"lib\/data-loader.js",
"lib\/utils.js",
"content\/linkedinScroller.js",
"content\/user-simulator.js",
"lib\/storage-manager.js",
"content\/content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
}
},
"icons": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"LinkedIn Engagement keywords.xlsx",
"engagement-rules.json",
"assets\/styles\/*",
"assets\/icons\/*",
"popup\/*",
"lib\/*",
"templates\/*"
],
"matches": [
"https:\/\/*.linkedin.com\/*"
]
}
],
"options_ui": {
"page": "popup\/settings.html",
"open_in_tab": false
},
"minimum_chrome_version": "88",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/*.linkedin.com https:\/\/*.vietnamcos.com https:\/\/sheets.googleapis.com"
}
}