Qt Visual Studio Integration allows you to get quickly from a button on your form to the corresponding button-click-handler (in your C++ source code), by clicking on that widget. For example, if you have a button called "pushButton_42" on your form, click within the embedded Qt form editor onto this button to get to the following function in YourForm.cpp:
void YourForm::on_pushButton_42_clicked()
If the function doesn't yet exist, VS Integration will create it for you. Moreover, VS Integration allows easily connecting C++ code to signals from any widget on your form, by right-clicking on the widget, and selecting the signal you need from a dropdown-list. These features are not available from the "Visual Studio add-in".
Note: I compared Visual Studio Integration version 1.4.3 to add-in version 1.0.1.