From 98a687e45b42512bc7fb45727d4eec2c86e8372d Mon Sep 17 00:00:00 2001 From: John Kaster Date: Fri, 28 Jun 2024 14:58:53 -0700 Subject: [PATCH] fix: allow cloud.google.com for the API Explorer extension (#1477) Allow https://cloud.google.com as an external URL for the API Explorer extension --- packages/extension-api-explorer/manifest.lkml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/extension-api-explorer/manifest.lkml b/packages/extension-api-explorer/manifest.lkml index 82ef58b1c..c52023b9e 100644 --- a/packages/extension-api-explorer/manifest.lkml +++ b/packages/extension-api-explorer/manifest.lkml @@ -8,13 +8,13 @@ application: api-explorer { local_storage: yes navigation: no new_window: yes - new_window_external_urls: ["https://looker.com/*", "https://developer.mozilla.org/*", "https://docs.looker.com/*"] + new_window_external_urls: ["https://looker.com/*", "https://developer.mozilla.org/*", "https://docs.looker.com/*", "https://cloud.google.com/*"] raw_api_request: yes use_form_submit: yes use_embeds: yes use_clipboard: yes core_api_methods: ["versions", "api_spec"] - external_api_urls : ["https://raw.githubusercontent.com","http://localhost:30000","https://localhost:8080","https://static-a.cdn.looker.app","https://docs.looker.com","https://developer.mozilla.org/"] + external_api_urls : ["https://raw.githubusercontent.com","http://localhost:30000","https://localhost:8080","https://static-a.cdn.looker.app","https://docs.looker.com","https://cloud.google.com", "https://developer.mozilla.org/"] oauth2_urls: [] } }