├── DiscordRPCPlugin ├── App.config ├── DiscordRPCPlugin.cs ├── DiscordRPCPlugin.csproj ├── Properties │ └── AssemblyInfo.cs ├── README.md └── packages.config ├── README.md ├── center-window-on-first-load.md ├── common-services ├── README.md ├── ads-service.js ├── audio-service.js ├── extension-service.js ├── game-service.js ├── io-service.js ├── manifest-service.js ├── media-service.js ├── plugin-service.js ├── profile-service.js ├── screenshots-service.js ├── settings-service.js └── webserver-service.js ├── csharp-plugins ├── GameInstallationManager.cs ├── README.md ├── RegistryReader.cs └── WebSocketServer │ ├── WebSocketServer.cs │ └── socket-service.js ├── enable-dev-tools.reg ├── getInGameScreenResolution.md ├── getWindowMonitor.md ├── gulpfile.js ├── move-window-to-position.md ├── overwolf-manifest-schema.json ├── overwolf-manifest-schema.json.bak ├── overwolf-mock ├── index.ts └── overwolf.dev.mock.ts ├── owgameevents-plugin ├── Headers │ ├── Overwolf.h │ └── pdll.h ├── Overwolf.cpp ├── README.md └── pdll.cpp ├── siege_operator_ids.json └── windows-service ├── README.md ├── windowPosition.js └── windows-service.js /DiscordRPCPlugin/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/DiscordRPCPlugin/App.config -------------------------------------------------------------------------------- /DiscordRPCPlugin/DiscordRPCPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/DiscordRPCPlugin/DiscordRPCPlugin.cs -------------------------------------------------------------------------------- /DiscordRPCPlugin/DiscordRPCPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/DiscordRPCPlugin/DiscordRPCPlugin.csproj -------------------------------------------------------------------------------- /DiscordRPCPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/DiscordRPCPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DiscordRPCPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/DiscordRPCPlugin/README.md -------------------------------------------------------------------------------- /DiscordRPCPlugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/DiscordRPCPlugin/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/README.md -------------------------------------------------------------------------------- /center-window-on-first-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/center-window-on-first-load.md -------------------------------------------------------------------------------- /common-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/README.md -------------------------------------------------------------------------------- /common-services/ads-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/ads-service.js -------------------------------------------------------------------------------- /common-services/audio-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/audio-service.js -------------------------------------------------------------------------------- /common-services/extension-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/extension-service.js -------------------------------------------------------------------------------- /common-services/game-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/game-service.js -------------------------------------------------------------------------------- /common-services/io-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/io-service.js -------------------------------------------------------------------------------- /common-services/manifest-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/manifest-service.js -------------------------------------------------------------------------------- /common-services/media-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/media-service.js -------------------------------------------------------------------------------- /common-services/plugin-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/plugin-service.js -------------------------------------------------------------------------------- /common-services/profile-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/profile-service.js -------------------------------------------------------------------------------- /common-services/screenshots-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/screenshots-service.js -------------------------------------------------------------------------------- /common-services/settings-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/settings-service.js -------------------------------------------------------------------------------- /common-services/webserver-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/common-services/webserver-service.js -------------------------------------------------------------------------------- /csharp-plugins/GameInstallationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/csharp-plugins/GameInstallationManager.cs -------------------------------------------------------------------------------- /csharp-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/csharp-plugins/README.md -------------------------------------------------------------------------------- /csharp-plugins/RegistryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/csharp-plugins/RegistryReader.cs -------------------------------------------------------------------------------- /csharp-plugins/WebSocketServer/WebSocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/csharp-plugins/WebSocketServer/WebSocketServer.cs -------------------------------------------------------------------------------- /csharp-plugins/WebSocketServer/socket-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/csharp-plugins/WebSocketServer/socket-service.js -------------------------------------------------------------------------------- /enable-dev-tools.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/enable-dev-tools.reg -------------------------------------------------------------------------------- /getInGameScreenResolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/getInGameScreenResolution.md -------------------------------------------------------------------------------- /getWindowMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/getWindowMonitor.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/gulpfile.js -------------------------------------------------------------------------------- /move-window-to-position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/move-window-to-position.md -------------------------------------------------------------------------------- /overwolf-manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/overwolf-manifest-schema.json -------------------------------------------------------------------------------- /overwolf-manifest-schema.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/overwolf-manifest-schema.json.bak -------------------------------------------------------------------------------- /overwolf-mock/index.ts: -------------------------------------------------------------------------------- 1 | export * from './overwolf.dev.mock' -------------------------------------------------------------------------------- /overwolf-mock/overwolf.dev.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/overwolf-mock/overwolf.dev.mock.ts -------------------------------------------------------------------------------- /owgameevents-plugin/Headers/Overwolf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/owgameevents-plugin/Headers/Overwolf.h -------------------------------------------------------------------------------- /owgameevents-plugin/Headers/pdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/owgameevents-plugin/Headers/pdll.h -------------------------------------------------------------------------------- /owgameevents-plugin/Overwolf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/owgameevents-plugin/Overwolf.cpp -------------------------------------------------------------------------------- /owgameevents-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/owgameevents-plugin/README.md -------------------------------------------------------------------------------- /owgameevents-plugin/pdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/owgameevents-plugin/pdll.cpp -------------------------------------------------------------------------------- /siege_operator_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/siege_operator_ids.json -------------------------------------------------------------------------------- /windows-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/windows-service/README.md -------------------------------------------------------------------------------- /windows-service/windowPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/windows-service/windowPosition.js -------------------------------------------------------------------------------- /windows-service/windows-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overwolf/community-gists/HEAD/windows-service/windows-service.js --------------------------------------------------------------------------------