{ "name": "Dick's Sporting Goods Product", "description": "Extract product details from Dick's", "site": "dickssportinggoods.com", "category": "ecommerce", "icon": "\ud83c\udfc0", "schema": { "name": "dicks_product", "base_selector": ".product-detail", "fields": [ { "name": "title", "selector": "h1", "type": "text" }, { "name": "price", "selector": "[class*='price']", "type": "text", "transform": "float" }, { "name": "rating", "selector": "[class*='rating']", "type": "attribute", "attribute": "aria-label" }, { "name": "review_count", "selector": "[class*='reviews']", "type": "text", "transform": "int" }, { "name": "brand", "selector": "[class*='brand']", "type": "text" }, { "name": "description", "selector": "[class*='description']", "type": "text" }, { "name": "image_url", "selector": "[class*='image'] img", "type": "attribute", "attribute": "src" }, { "name": "size_options", "selector": "[class*='size']", "type": "count" }, { "name": "sku", "selector": "[itemprop='sku']", "type": "text" } ] }, "url_pattern": "*://www.dickssportinggoods.com/*", "_license": "MIT", "_copyright": "Copyright (c) 2026 Rug Munch Media LLC" }