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 Article Extractor",
"version": "1.1",
"description": "Extracts article links from LinkedIn pages",
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"permissions": [
"activeTab"
],
"host_permissions": [
"https:\/\/www.linkedin.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.linkedin.com\/*"
],
"js": [
"js\/content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
}
},
"background": {
"service_worker": "js\/background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}