Refresh browser in VSCode when a JSON file or XML file modified

Hey, we working with a JSON file on VSCODE, but every time we need to update the JSON and test the game we have to click on the Cocos Creator window in order to take the modifications, then we have to refresh manually the Browser by hitting CTRL + R. Is the Cocos Creator compile task can also build and refresh automatically the browser when we modify a JSON file?

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Cocos Creator compile",
            "command": "curl",
            "args": [
                "http://localhost:7456/asset-db/refresh"
            ],
            "type": "shell",
            "isBackground": true,
            "group": "build",
            "presentation": {
                "reveal": "always"
            }
        }
    ]
}