├── .gitignore ├── CONTRIBUTING.md ├── Custom Configurations └── CustomConfigurations.json ├── Deprecated ├── dotnet │ ├── README.md │ └── cbcm-csharp │ │ ├── .vs │ │ └── cbcm-csharp │ │ │ ├── CopilotIndices │ │ │ └── 17.14.827.52834 │ │ │ │ ├── CodeChunks.db │ │ │ │ └── SemanticSymbols.db │ │ │ └── v17 │ │ │ ├── .suo │ │ │ ├── DocumentLayout.backup.json │ │ │ └── DocumentLayout.json │ │ ├── cbcm-csharp.sln │ │ ├── cbcmApp │ │ ├── App.config │ │ ├── ConfigHelper.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── cbcmApp.csproj │ │ ├── cbcmApp.csproj.user │ │ └── obj │ │ │ ├── Debug │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── cbcmApp.csproj.AssemblyReference.cache │ │ │ └── Release │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── cbcmApp.csproj.AssemblyReference.cache │ │ ├── cbcmClient │ │ ├── AuthorizationToken.cs │ │ ├── BaseHelper.cs │ │ ├── CBCMEnrollmentToken.cs │ │ ├── ChromeBrowser.cs │ │ ├── ChromeMgmtPolicy.cs │ │ ├── ChrometPolicyResolve.cs │ │ ├── DirectoryOrgUnit.cs │ │ ├── ExtensionDetails.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── cbcmClient.csproj │ │ ├── obj │ │ │ ├── Debug │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ └── cbcmClient.csproj.AssemblyReference.cache │ │ │ └── Release │ │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ │ └── cbcmClient.csproj.AssemblyReference.cache │ │ └── packages.config │ │ └── cbcmschema │ │ ├── BrowserAnnotatedItem.cs │ │ ├── BrowserDevices.cs │ │ ├── BrowserPolicyRequest.cs │ │ ├── ChromeMgmtPolicy.cs │ │ ├── CrxcavatorRiskItem.cs │ │ ├── EnrollmentTokenItem.cs │ │ ├── ExtensionInstallDeviceReport.cs │ │ ├── ExtensionInstallReport.cs │ │ ├── ExtensionItem.cs │ │ ├── ExtensionMgmtPolicy.cs │ │ ├── MoveChromeBrowsersToOu.cs │ │ ├── OrgUnits.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ResponseException.cs │ │ ├── SpinRiskItem.cs │ │ ├── cbcmSchema.csproj │ │ ├── obj │ │ ├── Debug │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── cbcmSchema.csproj.AssemblyReference.cache │ │ └── Release │ │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ │ └── cbcmSchema.csproj.AssemblyReference.cache │ │ └── packages.config ├── extension_query.py ├── extension_query_py2.py └── extension_query_sample.png ├── LICENSE ├── Python ├── BlockExtensionBasedOnRiskScore.py ├── BlockExtensionBasedOnRiskScoreOutput.png ├── README.md ├── cbcm-browser-basic-export.py ├── cbcm-browser-extension-profile-export-Capture.PNG ├── cbcm-browser-extension-profile-export.py ├── cbcm-device-gbp-create.py ├── cbcm-profiles-export.py ├── cloudidentitymembership.py ├── connectors │ └── splunk │ │ ├── README.md │ │ ├── cbcm │ │ ├── README │ │ │ ├── alert_actions.conf.spec │ │ │ └── savedsearches.conf.spec │ │ ├── appserver │ │ │ └── static │ │ │ │ └── app_icon.png │ │ ├── bin │ │ │ ├── README │ │ │ ├── cbcm.py │ │ │ └── import_declare_test.py │ │ ├── default │ │ │ ├── alert_actions.conf │ │ │ ├── app.conf │ │ │ └── data │ │ │ │ └── ui │ │ │ │ ├── alerts │ │ │ │ └── cbcm.html │ │ │ │ ├── nav │ │ │ │ └── default.xml │ │ │ │ └── views │ │ │ │ └── README │ │ └── metadata │ │ │ └── default.meta │ │ └── screenshot │ │ └── lib.png ├── policy_exporter.py ├── policy_importer.py └── policy_migrator.py ├── README.md ├── Windows ├── PinChromeToTaskbar.xml ├── PowerShell │ ├── CommandAs │ │ └── WakeBrowserAsSystem.ps1 │ ├── Delete-ChromeRegistry.ps1 │ ├── ForceUpdateBrowser.ps1 │ ├── MoveBookmarksBetweenProfiles.ps1 │ ├── README.md │ ├── Unenroll-from-CBCM.cmd │ ├── WakeBrowser.ps1 │ ├── cbcm │ │ ├── AddEnrollmentTokenThenRegister.ps1 │ │ ├── CommandAs │ │ │ └── AddEnrollmentTokenThenRegisterAsSystem.ps1 │ │ ├── MoveEnrolledBrowserByWindowsOSName.ps1 │ │ ├── MoveReEnrollBrowser.ps1 │ │ ├── README.md │ │ ├── UnenrollBrowser.ps1 │ │ ├── cbcm_get_token_with_json_file.ps1 │ │ └── cbcm_get_token_with_json_var.ps1 │ ├── disableEdgeDefaultBrowserSettingsCampaigns.ps1 │ ├── unenroll-admin-cmd-capture.PNG │ └── update3web_demo.js └── README.md ├── curl └── authorization.md ├── docs ├── API_Get_Started.md ├── App_Details_api.md ├── CBCM_api.md ├── Chrome_Management_Reports_api.md ├── Chrome_Policy_api.md ├── Directory_api.md ├── Enrollment_Token_api.md ├── ExtensionRiskSignals_FromImport.PNG ├── ExtensionRiskSignals_FromOU.PNG ├── Reports_api.md ├── auth.md ├── create_proj.MD ├── create_project.md ├── images │ ├── OAuthConsentProcess.svg │ ├── blank.md │ ├── consent_screen_1.png │ ├── consent_screen_scope.png │ └── oAuth_Cred_Create.PNG ├── policy_examples │ ├── com.google.Chrome.plist │ ├── initial_preferences │ ├── managed_policies.json │ ├── policies.reg │ └── recommended_policies.json ├── proj_apis.MD ├── service_acct.MD └── start.md ├── mobile └── ChromeBrowserCloudManagement.mobileconfig └── postman └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | "" 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Custom Configurations/CustomConfigurations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Custom Configurations/CustomConfigurations.json -------------------------------------------------------------------------------- /Deprecated/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/README.md -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/CopilotIndices/17.14.827.52834/CodeChunks.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/CopilotIndices/17.14.827.52834/CodeChunks.db -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/CopilotIndices/17.14.827.52834/SemanticSymbols.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/CopilotIndices/17.14.827.52834/SemanticSymbols.db -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/v17/.suo -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/v17/DocumentLayout.backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/v17/DocumentLayout.backup.json -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/.vs/cbcm-csharp/v17/DocumentLayout.json -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcm-csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcm-csharp.sln -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/App.config -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/ConfigHelper.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/Program.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/cbcmApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/cbcmApp.csproj -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/cbcmApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/cbcmApp.csproj.user -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Debug/cbcmApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Debug/cbcmApp.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Release/cbcmApp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmApp/obj/Release/cbcmApp.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/AuthorizationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/AuthorizationToken.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/BaseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/BaseHelper.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/CBCMEnrollmentToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/CBCMEnrollmentToken.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/ChromeBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/ChromeBrowser.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/ChromeMgmtPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/ChromeMgmtPolicy.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/ChrometPolicyResolve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/ChrometPolicyResolve.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/DirectoryOrgUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/DirectoryOrgUnit.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/ExtensionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/ExtensionDetails.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/cbcmClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/cbcmClient.csproj -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Debug/cbcmClient.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Debug/cbcmClient.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Release/cbcmClient.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/obj/Release/cbcmClient.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmClient/packages.config -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/BrowserAnnotatedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/BrowserAnnotatedItem.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/BrowserDevices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/BrowserDevices.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/BrowserPolicyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/BrowserPolicyRequest.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/ChromeMgmtPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/ChromeMgmtPolicy.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/CrxcavatorRiskItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/CrxcavatorRiskItem.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/EnrollmentTokenItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/EnrollmentTokenItem.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionInstallDeviceReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionInstallDeviceReport.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionInstallReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionInstallReport.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionItem.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionMgmtPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/ExtensionMgmtPolicy.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/MoveChromeBrowsersToOu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/MoveChromeBrowsersToOu.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/OrgUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/OrgUnits.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/ResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/ResponseException.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/SpinRiskItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/SpinRiskItem.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/cbcmSchema.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/cbcmSchema.csproj -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Debug/cbcmSchema.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Debug/cbcmSchema.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Release/cbcmSchema.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/obj/Release/cbcmSchema.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Deprecated/dotnet/cbcm-csharp/cbcmschema/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/dotnet/cbcm-csharp/cbcmschema/packages.config -------------------------------------------------------------------------------- /Deprecated/extension_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/extension_query.py -------------------------------------------------------------------------------- /Deprecated/extension_query_py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/extension_query_py2.py -------------------------------------------------------------------------------- /Deprecated/extension_query_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Deprecated/extension_query_sample.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/BlockExtensionBasedOnRiskScore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/BlockExtensionBasedOnRiskScore.py -------------------------------------------------------------------------------- /Python/BlockExtensionBasedOnRiskScoreOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/BlockExtensionBasedOnRiskScoreOutput.png -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/cbcm-browser-basic-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/cbcm-browser-basic-export.py -------------------------------------------------------------------------------- /Python/cbcm-browser-extension-profile-export-Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/cbcm-browser-extension-profile-export-Capture.PNG -------------------------------------------------------------------------------- /Python/cbcm-browser-extension-profile-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/cbcm-browser-extension-profile-export.py -------------------------------------------------------------------------------- /Python/cbcm-device-gbp-create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/cbcm-device-gbp-create.py -------------------------------------------------------------------------------- /Python/cbcm-profiles-export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/cbcm-profiles-export.py -------------------------------------------------------------------------------- /Python/cloudidentitymembership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/cloudidentitymembership.py -------------------------------------------------------------------------------- /Python/connectors/splunk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/README.md -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/README/alert_actions.conf.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/README/savedsearches.conf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/README/savedsearches.conf.spec -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/appserver/static/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/appserver/static/app_icon.png -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/bin/README -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/bin/cbcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/bin/cbcm.py -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/bin/import_declare_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/bin/import_declare_test.py -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/default/alert_actions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/default/alert_actions.conf -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/default/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/default/app.conf -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/default/data/ui/alerts/cbcm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/default/data/ui/alerts/cbcm.html -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/default/data/ui/nav/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/default/data/ui/nav/default.xml -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/default/data/ui/views/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/default/data/ui/views/README -------------------------------------------------------------------------------- /Python/connectors/splunk/cbcm/metadata/default.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/cbcm/metadata/default.meta -------------------------------------------------------------------------------- /Python/connectors/splunk/screenshot/lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/connectors/splunk/screenshot/lib.png -------------------------------------------------------------------------------- /Python/policy_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/policy_exporter.py -------------------------------------------------------------------------------- /Python/policy_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/policy_importer.py -------------------------------------------------------------------------------- /Python/policy_migrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Python/policy_migrator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/README.md -------------------------------------------------------------------------------- /Windows/PinChromeToTaskbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PinChromeToTaskbar.xml -------------------------------------------------------------------------------- /Windows/PowerShell/CommandAs/WakeBrowserAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/CommandAs/WakeBrowserAsSystem.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/Delete-ChromeRegistry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/Delete-ChromeRegistry.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/ForceUpdateBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/ForceUpdateBrowser.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/MoveBookmarksBetweenProfiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/MoveBookmarksBetweenProfiles.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/README.md -------------------------------------------------------------------------------- /Windows/PowerShell/Unenroll-from-CBCM.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/Unenroll-from-CBCM.cmd -------------------------------------------------------------------------------- /Windows/PowerShell/WakeBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/WakeBrowser.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/AddEnrollmentTokenThenRegister.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/AddEnrollmentTokenThenRegister.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/CommandAs/AddEnrollmentTokenThenRegisterAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/CommandAs/AddEnrollmentTokenThenRegisterAsSystem.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/MoveEnrolledBrowserByWindowsOSName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/MoveEnrolledBrowserByWindowsOSName.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/MoveReEnrollBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/MoveReEnrollBrowser.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/README.md -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/UnenrollBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/UnenrollBrowser.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/cbcm_get_token_with_json_file.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/cbcm_get_token_with_json_file.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/cbcm/cbcm_get_token_with_json_var.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/cbcm/cbcm_get_token_with_json_var.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/disableEdgeDefaultBrowserSettingsCampaigns.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/disableEdgeDefaultBrowserSettingsCampaigns.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/unenroll-admin-cmd-capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/unenroll-admin-cmd-capture.PNG -------------------------------------------------------------------------------- /Windows/PowerShell/update3web_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/PowerShell/update3web_demo.js -------------------------------------------------------------------------------- /Windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/Windows/README.md -------------------------------------------------------------------------------- /curl/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/curl/authorization.md -------------------------------------------------------------------------------- /docs/API_Get_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/API_Get_Started.md -------------------------------------------------------------------------------- /docs/App_Details_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/App_Details_api.md -------------------------------------------------------------------------------- /docs/CBCM_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/CBCM_api.md -------------------------------------------------------------------------------- /docs/Chrome_Management_Reports_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/Chrome_Management_Reports_api.md -------------------------------------------------------------------------------- /docs/Chrome_Policy_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/Chrome_Policy_api.md -------------------------------------------------------------------------------- /docs/Directory_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/Directory_api.md -------------------------------------------------------------------------------- /docs/Enrollment_Token_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/Enrollment_Token_api.md -------------------------------------------------------------------------------- /docs/ExtensionRiskSignals_FromImport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/ExtensionRiskSignals_FromImport.PNG -------------------------------------------------------------------------------- /docs/ExtensionRiskSignals_FromOU.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/ExtensionRiskSignals_FromOU.PNG -------------------------------------------------------------------------------- /docs/Reports_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/Reports_api.md -------------------------------------------------------------------------------- /docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/auth.md -------------------------------------------------------------------------------- /docs/create_proj.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/create_proj.MD -------------------------------------------------------------------------------- /docs/create_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/create_project.md -------------------------------------------------------------------------------- /docs/images/OAuthConsentProcess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/images/OAuthConsentProcess.svg -------------------------------------------------------------------------------- /docs/images/blank.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/images/consent_screen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/images/consent_screen_1.png -------------------------------------------------------------------------------- /docs/images/consent_screen_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/images/consent_screen_scope.png -------------------------------------------------------------------------------- /docs/images/oAuth_Cred_Create.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/images/oAuth_Cred_Create.PNG -------------------------------------------------------------------------------- /docs/policy_examples/com.google.Chrome.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/policy_examples/com.google.Chrome.plist -------------------------------------------------------------------------------- /docs/policy_examples/initial_preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/policy_examples/initial_preferences -------------------------------------------------------------------------------- /docs/policy_examples/managed_policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/policy_examples/managed_policies.json -------------------------------------------------------------------------------- /docs/policy_examples/policies.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/policy_examples/policies.reg -------------------------------------------------------------------------------- /docs/policy_examples/recommended_policies.json: -------------------------------------------------------------------------------- 1 | { 2 | "MetricsReportingEnabled": true 3 | } 4 | -------------------------------------------------------------------------------- /docs/proj_apis.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/proj_apis.MD -------------------------------------------------------------------------------- /docs/service_acct.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/service_acct.MD -------------------------------------------------------------------------------- /docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/docs/start.md -------------------------------------------------------------------------------- /mobile/ChromeBrowserCloudManagement.mobileconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/mobile/ChromeBrowserCloudManagement.mobileconfig -------------------------------------------------------------------------------- /postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ChromeBrowserEnterprise/HEAD/postman/README.md --------------------------------------------------------------------------------