├── .gitattributes ├── .gitignore ├── Button Images ├── Donate_Button_Hover.png ├── Donate_Button_Normal.png └── Question_Mark.jpg ├── Classes ├── DataFunctions.cs ├── LogSystem.cs ├── NativeMethods.cs ├── Notifications │ ├── ProgramStatus.cs │ ├── Status.cs │ ├── StatusType.cs │ └── TaskbarNotifier.cs ├── Settings.cs ├── StringFunctions.cs ├── UpdateNotifier.cs ├── WebClientExtent.cs ├── Window.cs └── WindowOperations.cs ├── CustomDictionary.xml ├── Forms ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── AddWindowNameForm.Designer.cs ├── AddWindowNameForm.cs ├── AddWindowNameForm.resx ├── AvailableWindowsForm.Designer.cs ├── AvailableWindowsForm.cs ├── AvailableWindowsForm.resx ├── MainForm.Designer.cs ├── MainForm.cs └── MainForm.resx ├── Icons ├── Icon-default.xcf ├── app_icon_default.ico └── app_icon_turned-off.ico ├── Menu Items ├── about.png ├── add_window_name.png ├── check-for-updates.png ├── copy.png ├── copy_email.png ├── delete.png ├── exit.png ├── start.png └── stop.png ├── Notification Images ├── Basic.xcf ├── close.bmp ├── notification-green.png ├── notification-red.png └── notification-yellow.png ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Settings.StyleCop ├── Startup.cs ├── TeamViewerPopupBlocker.csproj ├── TeamViewerPopupBlocker.csproj.DotSettings ├── TeamViewerPopupBlocker.csproj.DotSettings.user ├── TeamViewerPopupBlocker.csproj.user ├── TeamViewerPopupBlocker.sln ├── TeamViewerPopupBlocker.sln.DotSettings.user ├── TeamViewerPopupBlocker.suo ├── app.config └── tvpb.pfx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/.gitignore -------------------------------------------------------------------------------- /Button Images/Donate_Button_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Button Images/Donate_Button_Hover.png -------------------------------------------------------------------------------- /Button Images/Donate_Button_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Button Images/Donate_Button_Normal.png -------------------------------------------------------------------------------- /Button Images/Question_Mark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Button Images/Question_Mark.jpg -------------------------------------------------------------------------------- /Classes/DataFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/DataFunctions.cs -------------------------------------------------------------------------------- /Classes/LogSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/LogSystem.cs -------------------------------------------------------------------------------- /Classes/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/NativeMethods.cs -------------------------------------------------------------------------------- /Classes/Notifications/ProgramStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/Notifications/ProgramStatus.cs -------------------------------------------------------------------------------- /Classes/Notifications/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/Notifications/Status.cs -------------------------------------------------------------------------------- /Classes/Notifications/StatusType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/Notifications/StatusType.cs -------------------------------------------------------------------------------- /Classes/Notifications/TaskbarNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/Notifications/TaskbarNotifier.cs -------------------------------------------------------------------------------- /Classes/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/Settings.cs -------------------------------------------------------------------------------- /Classes/StringFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/StringFunctions.cs -------------------------------------------------------------------------------- /Classes/UpdateNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/UpdateNotifier.cs -------------------------------------------------------------------------------- /Classes/WebClientExtent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/WebClientExtent.cs -------------------------------------------------------------------------------- /Classes/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/Window.cs -------------------------------------------------------------------------------- /Classes/WindowOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Classes/WindowOperations.cs -------------------------------------------------------------------------------- /CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/CustomDictionary.xml -------------------------------------------------------------------------------- /Forms/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AboutBox.Designer.cs -------------------------------------------------------------------------------- /Forms/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AboutBox.cs -------------------------------------------------------------------------------- /Forms/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AboutBox.resx -------------------------------------------------------------------------------- /Forms/AddWindowNameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AddWindowNameForm.Designer.cs -------------------------------------------------------------------------------- /Forms/AddWindowNameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AddWindowNameForm.cs -------------------------------------------------------------------------------- /Forms/AddWindowNameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AddWindowNameForm.resx -------------------------------------------------------------------------------- /Forms/AvailableWindowsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AvailableWindowsForm.Designer.cs -------------------------------------------------------------------------------- /Forms/AvailableWindowsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AvailableWindowsForm.cs -------------------------------------------------------------------------------- /Forms/AvailableWindowsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/AvailableWindowsForm.resx -------------------------------------------------------------------------------- /Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/MainForm.cs -------------------------------------------------------------------------------- /Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Forms/MainForm.resx -------------------------------------------------------------------------------- /Icons/Icon-default.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Icons/Icon-default.xcf -------------------------------------------------------------------------------- /Icons/app_icon_default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Icons/app_icon_default.ico -------------------------------------------------------------------------------- /Icons/app_icon_turned-off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Icons/app_icon_turned-off.ico -------------------------------------------------------------------------------- /Menu Items/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/about.png -------------------------------------------------------------------------------- /Menu Items/add_window_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/add_window_name.png -------------------------------------------------------------------------------- /Menu Items/check-for-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/check-for-updates.png -------------------------------------------------------------------------------- /Menu Items/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/copy.png -------------------------------------------------------------------------------- /Menu Items/copy_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/copy_email.png -------------------------------------------------------------------------------- /Menu Items/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/delete.png -------------------------------------------------------------------------------- /Menu Items/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/exit.png -------------------------------------------------------------------------------- /Menu Items/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/start.png -------------------------------------------------------------------------------- /Menu Items/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Menu Items/stop.png -------------------------------------------------------------------------------- /Notification Images/Basic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Notification Images/Basic.xcf -------------------------------------------------------------------------------- /Notification Images/close.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Notification Images/close.bmp -------------------------------------------------------------------------------- /Notification Images/notification-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Notification Images/notification-green.png -------------------------------------------------------------------------------- /Notification Images/notification-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Notification Images/notification-red.png -------------------------------------------------------------------------------- /Notification Images/notification-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Notification Images/notification-yellow.png -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/README.md -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Settings.StyleCop -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/Startup.cs -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.csproj -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.csproj.DotSettings -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.csproj.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.csproj.DotSettings.user -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.csproj.user -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.sln -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.sln.DotSettings.user -------------------------------------------------------------------------------- /TeamViewerPopupBlocker.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/TeamViewerPopupBlocker.suo -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/app.config -------------------------------------------------------------------------------- /tvpb.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unholyHub/TeamViewerPopupBlocker/HEAD/tvpb.pfx --------------------------------------------------------------------------------