{
    "manifest_version": 3,
    "name": "MarketScope - Price Intelligence",
    "version": "1.0.0",
    "description": "E-Commerce Price Intelligence Tool for Shopee, Tokopedia, and TikTok Shop. Analyze market prices and get AI-powered pricing recommendations.",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "scripting",
        "downloads"
    ],
    "host_permissions": [
        "https://*.shopee.co.id/*",
        "https://*.tokopedia.com/*",
        "https://*.tiktok.com/*",
        "http://localhost:3000/*"
    ],
    "action": {
        "default_popup": "popup/popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https://shopee.co.id/*",
                "https://*.shopee.co.id/*"
            ],
            "js": [
                "content/scanner.js",
                "content/shopee.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https://www.tokopedia.com/*",
                "https://tokopedia.com/*"
            ],
            "js": [
                "content/scanner.js",
                "content/tokopedia.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https://www.tiktok.com/*",
                "https://tiktok.com/*"
            ],
            "js": [
                "content/scanner.js",
                "content/tiktokshop.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}