pryscraper/templates/linkedin-profile.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

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"
}