Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
52 lines
No EOL
1.2 KiB
JSON
52 lines
No EOL
1.2 KiB
JSON
{
|
|
"name": "LinkedIn Profile",
|
|
"description": "Extract profile information from LinkedIn public profiles",
|
|
"site": "linkedin.com",
|
|
"category": "professional",
|
|
"icon": "\ud83d\udcbc",
|
|
"url_pattern": "*://www.linkedin.com/in/*",
|
|
"schema": {
|
|
"name": "linkedin_profile",
|
|
"base_selector": ".profile-detail",
|
|
"fields": [
|
|
{
|
|
"name": "name",
|
|
"selector": "h1",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "headline",
|
|
"selector": ".text-body-medium",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "location",
|
|
"selector": ".text-body-small.inline",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "about",
|
|
"selector": "#about ~ div",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "experience",
|
|
"selector": "#experience ~ .display-flex li",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "education",
|
|
"selector": "#education ~ .display-flex li",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "profile_image",
|
|
"selector": ".profile-photo-edit img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
}
|
|
]
|
|
},
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |