Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
43 lines
No EOL
981 B
JSON
43 lines
No EOL
981 B
JSON
{
|
|
"name": "Costco Product",
|
|
"description": "Extract product details from Costco",
|
|
"site": "costco.com",
|
|
"category": "ecommerce",
|
|
"icon": "\ud83c\udfea",
|
|
"schema": {
|
|
"name": "costco_product",
|
|
"base_selector": ".product-details",
|
|
"fields": [
|
|
{
|
|
"name": "title",
|
|
"selector": "h1",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "price",
|
|
"selector": ".your-price",
|
|
"type": "text",
|
|
"transform": "float"
|
|
},
|
|
{
|
|
"name": "item_number",
|
|
"selector": ".item-number",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "#product-description",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"selector": ".product-image img",
|
|
"type": "attribute",
|
|
"attribute": "src"
|
|
}
|
|
]
|
|
},
|
|
"url_pattern": "*://www.costco.com/*",
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |