Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
50 lines
No EOL
1.3 KiB
JSON
50 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "TikTok Profile",
|
|
"description": "Extract profile info from TikTok",
|
|
"site": "tiktok.com",
|
|
"category": "social",
|
|
"icon": "\ud83c\udfb5",
|
|
"schema": {
|
|
"name": "tiktok_profile",
|
|
"base_selector": "body",
|
|
"fields": [
|
|
{
|
|
"name": "username",
|
|
"selector": "h1, [class*='share-title'], [data-e2e='user-title']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "bio",
|
|
"selector": "h2, [class*='share-desc'], [data-e2e='user-desc']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "followers",
|
|
"selector": "[class*='follower-count'], strong:contains('Followers')",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "following",
|
|
"selector": "[class*='following-count'], strong:contains('Following')",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "likes",
|
|
"selector": "[class*='like-count'], strong:contains('Likes')",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "avatar",
|
|
"selector": "[class*='avatar'] img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
}
|
|
]
|
|
},
|
|
"url_pattern": "*://www.tiktok.com/*",
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |