├── .coderabbit.yaml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── release.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── crowdin.yml ├── forum ├── main_01.jpg ├── settings_01.jpg └── steamgriddb_01.jpg ├── manifest └── Lacro59_BackgroundChanger.yaml ├── screenshots ├── plugin_mainview.jpg ├── plugin_settings.jpg ├── plugin_steamgriddb.jpg └── thumbs │ ├── plugin_mainview.jpg │ ├── plugin_settings.jpg │ └── plugin_steamgriddb.jpg └── source ├── App.xaml ├── BackgroundChanger.cs ├── BackgroundChanger.csproj ├── BackgroundChanger.sln ├── BackgroundChangerSettings.cs ├── BackgroundChanger_plgr54vm_wpftmp.csproj ├── Controls ├── PluginBackgroundImage.xaml ├── PluginBackgroundImage.xaml.cs ├── PluginCoverImage.xaml └── PluginCoverImage.xaml.cs ├── Localization ├── LocSource.xaml ├── ar_SA.xaml ├── bg_BG.xaml ├── ca_ES.xaml ├── cs_CZ.xaml ├── da_DK.xaml ├── de_DE.xaml ├── el_GR.xaml ├── en_US.xaml ├── es_ES.xaml ├── et_EE.xaml ├── fa_IR.xaml ├── fi_FI.xaml ├── fr_FR.xaml ├── gl_ES.xaml ├── he_IL.xaml ├── hr_HR.xaml ├── hu_HU.xaml ├── id_ID.xaml ├── it_IT.xaml ├── ja_JP.xaml ├── ko_KR.xaml ├── lt_LT.xaml ├── nl_NL.xaml ├── no_NO.xaml ├── pl_PL.xaml ├── pt_BR.xaml ├── pt_PT.xaml ├── ro_RO.xaml ├── ru_RU.xaml ├── sk_SK.xaml ├── sr_SP.xaml ├── sv_SE.xaml ├── tr_TR.xaml ├── uk_UA.xaml ├── vi_VN.xaml ├── zh_CN.xaml └── zh_TW.xaml ├── Models ├── BackgroundImagesCollection.cs ├── CheckData.cs ├── GameBackgroundImages.cs ├── GoogleImage.cs ├── ItemImage.cs ├── SteamGridDbResult.cs └── SteamGridDbSearchResult.cs ├── Properties └── AssemblyInfo.cs ├── Services ├── BackgroundChangerDatabase.cs └── SteamGridDbApi.cs ├── SharedDLL ├── SharedDLL.projitems ├── SharedDLL.shproj ├── libwebp_x64.dll ├── libwebp_x86.dll └── webpinfo.exe ├── Views ├── BackgroundChangerSettingsView.xaml ├── BackgroundChangerSettingsView.xaml.cs ├── GoogleImageView.xaml ├── GoogleImageView.xaml.cs ├── ImagesManager.xaml ├── ImagesManager.xaml.cs ├── SteamGridDbView.xaml └── SteamGridDbView.xaml.cs ├── extension.yaml ├── icon.png └── packages.config /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: lacro59 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/crowdin.yml -------------------------------------------------------------------------------- /forum/main_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/forum/main_01.jpg -------------------------------------------------------------------------------- /forum/settings_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/forum/settings_01.jpg -------------------------------------------------------------------------------- /forum/steamgriddb_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/forum/steamgriddb_01.jpg -------------------------------------------------------------------------------- /manifest/Lacro59_BackgroundChanger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/manifest/Lacro59_BackgroundChanger.yaml -------------------------------------------------------------------------------- /screenshots/plugin_mainview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/screenshots/plugin_mainview.jpg -------------------------------------------------------------------------------- /screenshots/plugin_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/screenshots/plugin_settings.jpg -------------------------------------------------------------------------------- /screenshots/plugin_steamgriddb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/screenshots/plugin_steamgriddb.jpg -------------------------------------------------------------------------------- /screenshots/thumbs/plugin_mainview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/screenshots/thumbs/plugin_mainview.jpg -------------------------------------------------------------------------------- /screenshots/thumbs/plugin_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/screenshots/thumbs/plugin_settings.jpg -------------------------------------------------------------------------------- /screenshots/thumbs/plugin_steamgriddb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/screenshots/thumbs/plugin_steamgriddb.jpg -------------------------------------------------------------------------------- /source/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/App.xaml -------------------------------------------------------------------------------- /source/BackgroundChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/BackgroundChanger.cs -------------------------------------------------------------------------------- /source/BackgroundChanger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/BackgroundChanger.csproj -------------------------------------------------------------------------------- /source/BackgroundChanger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/BackgroundChanger.sln -------------------------------------------------------------------------------- /source/BackgroundChangerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/BackgroundChangerSettings.cs -------------------------------------------------------------------------------- /source/BackgroundChanger_plgr54vm_wpftmp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/BackgroundChanger_plgr54vm_wpftmp.csproj -------------------------------------------------------------------------------- /source/Controls/PluginBackgroundImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Controls/PluginBackgroundImage.xaml -------------------------------------------------------------------------------- /source/Controls/PluginBackgroundImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Controls/PluginBackgroundImage.xaml.cs -------------------------------------------------------------------------------- /source/Controls/PluginCoverImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Controls/PluginCoverImage.xaml -------------------------------------------------------------------------------- /source/Controls/PluginCoverImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Controls/PluginCoverImage.xaml.cs -------------------------------------------------------------------------------- /source/Localization/LocSource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/LocSource.xaml -------------------------------------------------------------------------------- /source/Localization/ar_SA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/ar_SA.xaml -------------------------------------------------------------------------------- /source/Localization/bg_BG.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/bg_BG.xaml -------------------------------------------------------------------------------- /source/Localization/ca_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/ca_ES.xaml -------------------------------------------------------------------------------- /source/Localization/cs_CZ.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/cs_CZ.xaml -------------------------------------------------------------------------------- /source/Localization/da_DK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/da_DK.xaml -------------------------------------------------------------------------------- /source/Localization/de_DE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/de_DE.xaml -------------------------------------------------------------------------------- /source/Localization/el_GR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/el_GR.xaml -------------------------------------------------------------------------------- /source/Localization/en_US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/en_US.xaml -------------------------------------------------------------------------------- /source/Localization/es_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/es_ES.xaml -------------------------------------------------------------------------------- /source/Localization/et_EE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/et_EE.xaml -------------------------------------------------------------------------------- /source/Localization/fa_IR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/fa_IR.xaml -------------------------------------------------------------------------------- /source/Localization/fi_FI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/fi_FI.xaml -------------------------------------------------------------------------------- /source/Localization/fr_FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/fr_FR.xaml -------------------------------------------------------------------------------- /source/Localization/gl_ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/gl_ES.xaml -------------------------------------------------------------------------------- /source/Localization/he_IL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/he_IL.xaml -------------------------------------------------------------------------------- /source/Localization/hr_HR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/hr_HR.xaml -------------------------------------------------------------------------------- /source/Localization/hu_HU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/hu_HU.xaml -------------------------------------------------------------------------------- /source/Localization/id_ID.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/id_ID.xaml -------------------------------------------------------------------------------- /source/Localization/it_IT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/it_IT.xaml -------------------------------------------------------------------------------- /source/Localization/ja_JP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/ja_JP.xaml -------------------------------------------------------------------------------- /source/Localization/ko_KR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/ko_KR.xaml -------------------------------------------------------------------------------- /source/Localization/lt_LT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/lt_LT.xaml -------------------------------------------------------------------------------- /source/Localization/nl_NL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/nl_NL.xaml -------------------------------------------------------------------------------- /source/Localization/no_NO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/no_NO.xaml -------------------------------------------------------------------------------- /source/Localization/pl_PL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/pl_PL.xaml -------------------------------------------------------------------------------- /source/Localization/pt_BR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/pt_BR.xaml -------------------------------------------------------------------------------- /source/Localization/pt_PT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/pt_PT.xaml -------------------------------------------------------------------------------- /source/Localization/ro_RO.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/ro_RO.xaml -------------------------------------------------------------------------------- /source/Localization/ru_RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/ru_RU.xaml -------------------------------------------------------------------------------- /source/Localization/sk_SK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/sk_SK.xaml -------------------------------------------------------------------------------- /source/Localization/sr_SP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/sr_SP.xaml -------------------------------------------------------------------------------- /source/Localization/sv_SE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/sv_SE.xaml -------------------------------------------------------------------------------- /source/Localization/tr_TR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/tr_TR.xaml -------------------------------------------------------------------------------- /source/Localization/uk_UA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/uk_UA.xaml -------------------------------------------------------------------------------- /source/Localization/vi_VN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/vi_VN.xaml -------------------------------------------------------------------------------- /source/Localization/zh_CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/zh_CN.xaml -------------------------------------------------------------------------------- /source/Localization/zh_TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Localization/zh_TW.xaml -------------------------------------------------------------------------------- /source/Models/BackgroundImagesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/BackgroundImagesCollection.cs -------------------------------------------------------------------------------- /source/Models/CheckData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/CheckData.cs -------------------------------------------------------------------------------- /source/Models/GameBackgroundImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/GameBackgroundImages.cs -------------------------------------------------------------------------------- /source/Models/GoogleImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/GoogleImage.cs -------------------------------------------------------------------------------- /source/Models/ItemImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/ItemImage.cs -------------------------------------------------------------------------------- /source/Models/SteamGridDbResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/SteamGridDbResult.cs -------------------------------------------------------------------------------- /source/Models/SteamGridDbSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Models/SteamGridDbSearchResult.cs -------------------------------------------------------------------------------- /source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Services/BackgroundChangerDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Services/BackgroundChangerDatabase.cs -------------------------------------------------------------------------------- /source/Services/SteamGridDbApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Services/SteamGridDbApi.cs -------------------------------------------------------------------------------- /source/SharedDLL/SharedDLL.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/SharedDLL/SharedDLL.projitems -------------------------------------------------------------------------------- /source/SharedDLL/SharedDLL.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/SharedDLL/SharedDLL.shproj -------------------------------------------------------------------------------- /source/SharedDLL/libwebp_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/SharedDLL/libwebp_x64.dll -------------------------------------------------------------------------------- /source/SharedDLL/libwebp_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/SharedDLL/libwebp_x86.dll -------------------------------------------------------------------------------- /source/SharedDLL/webpinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/SharedDLL/webpinfo.exe -------------------------------------------------------------------------------- /source/Views/BackgroundChangerSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/BackgroundChangerSettingsView.xaml -------------------------------------------------------------------------------- /source/Views/BackgroundChangerSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/BackgroundChangerSettingsView.xaml.cs -------------------------------------------------------------------------------- /source/Views/GoogleImageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/GoogleImageView.xaml -------------------------------------------------------------------------------- /source/Views/GoogleImageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/GoogleImageView.xaml.cs -------------------------------------------------------------------------------- /source/Views/ImagesManager.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/ImagesManager.xaml -------------------------------------------------------------------------------- /source/Views/ImagesManager.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/ImagesManager.xaml.cs -------------------------------------------------------------------------------- /source/Views/SteamGridDbView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/SteamGridDbView.xaml -------------------------------------------------------------------------------- /source/Views/SteamGridDbView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/Views/SteamGridDbView.xaml.cs -------------------------------------------------------------------------------- /source/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/extension.yaml -------------------------------------------------------------------------------- /source/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/icon.png -------------------------------------------------------------------------------- /source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lacro59/playnite-backgroundchanger-plugin/HEAD/source/packages.config --------------------------------------------------------------------------------