Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
47 lines
No EOL
1.1 KiB
JSON
47 lines
No EOL
1.1 KiB
JSON
{
|
|
"name": "eBay Listing",
|
|
"description": "Extract product details from eBay listing pages",
|
|
"site": "ebay.com",
|
|
"category": "ecommerce",
|
|
"icon": "\ud83c\udfea",
|
|
"url_pattern": "*://www.ebay.com/itm/*",
|
|
"schema": {
|
|
"name": "ebay_listing",
|
|
"base_selector": "body",
|
|
"fields": [
|
|
{
|
|
"name": "title",
|
|
"selector": "h1.x-item-title__mainTitle span",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "price",
|
|
"selector": ".x-price-primary span",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "condition",
|
|
"selector": ".x-item-condition-text",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "seller",
|
|
"selector": ".x-sellercard-atf__info__about-seller a",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "shipping",
|
|
"selector": ".ux-label span[class*='shipping']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "#desc_ifr",
|
|
"type": "text"
|
|
}
|
|
]
|
|
},
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |