├── .gitignore ├── LICENSE.md ├── Nop.Plugin.Feed.GoogleShopping ├── Content │ └── styles.css ├── Controllers │ └── FeedGoogleShoppingController.cs ├── Data │ └── SchemaMigration.cs ├── Domain │ └── GoogleProductRecord.cs ├── Files │ └── taxonomy.txt ├── GoogleShoppingDefaults.cs ├── GoogleShoppingService.cs ├── GoogleShoppingSettings.cs ├── Infrastructure │ └── NopStartup.cs ├── Models │ ├── FeedGoogleShoppingModel.cs │ ├── GeneratedFileModel.cs │ ├── GoogleProductListModel.cs │ ├── GoogleProductModel.cs │ └── GoogleProductSearchModel.cs ├── Nop.Plugin.Feed.GoogleShopping.csproj ├── Notes.txt ├── Services │ ├── GoogleService.cs │ └── IGoogleService.cs ├── Views │ ├── Configure.cshtml │ ├── Edit.cshtml │ ├── _Configure.General.cshtml │ ├── _Configure.Override.cshtml │ ├── _Update.cshtml │ └── _ViewImports.cshtml ├── logo.png └── plugin.json └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Content/styles.css -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Controllers/FeedGoogleShoppingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Controllers/FeedGoogleShoppingController.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Data/SchemaMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Data/SchemaMigration.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Domain/GoogleProductRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Domain/GoogleProductRecord.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Files/taxonomy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Files/taxonomy.txt -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/GoogleShoppingDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/GoogleShoppingDefaults.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/GoogleShoppingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/GoogleShoppingService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/GoogleShoppingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/GoogleShoppingSettings.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Infrastructure/NopStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Infrastructure/NopStartup.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Models/FeedGoogleShoppingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Models/FeedGoogleShoppingModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Models/GeneratedFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Models/GeneratedFileModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Models/GoogleProductListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Models/GoogleProductListModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Models/GoogleProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Models/GoogleProductModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Models/GoogleProductSearchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Models/GoogleProductSearchModel.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Nop.Plugin.Feed.GoogleShopping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Nop.Plugin.Feed.GoogleShopping.csproj -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Notes.txt -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Services/GoogleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Services/GoogleService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Services/IGoogleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Services/IGoogleService.cs -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Views/Configure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Views/Configure.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Views/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Views/Edit.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Views/_Configure.General.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Views/_Configure.General.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Views/_Configure.Override.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Views/_Configure.Override.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Views/_Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Views/_Update.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/logo.png -------------------------------------------------------------------------------- /Nop.Plugin.Feed.GoogleShopping/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/Nop.Plugin.Feed.GoogleShopping/plugin.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopSolutions/GoogleShopping-plugin-for-nopcommerce/HEAD/README.md --------------------------------------------------------------------------------