{
    "manifest_version": 3,
    "name": "Mellowtel Extension",
    "version": "1.0.0",
    "description": "Mellowtel browser extension for website analytics and user behavior tracking",
    "icons": {
        "48": "icons/mellowtel_logo.jpeg"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "<all_urls>"
    ],
    "action": {
        "default_title": "Mellowtel Extension",
        "default_popup": "html/popup.html",
        "default_icon": {
            "48": "icons/mellowtel_logo.jpeg"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": ["<all_urls>"],
            "js": ["content.js"],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}
