error de iframe de hosting de firebase con X-Frame-Options

Necesito usar un par de iframe para una página alojada con firebase, pero me da un error de X-Frame-Options, uno de los iframe es para la galería alojada en picasa y otro ifrmae para el formulario de contacto (porque no pude enviar un correo electrónico a través de firebase :()

aquí hay un error

Refused to display 'https://get.google.com/albumarchive/pwa/11111/album/1111?source=pwa#slideshow/1111' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
jquery.min.js:2 Uncaught DOMException: Failed to read the 'contentDocument' property from 'HTMLIFrameElement': Blocked a frame with origin "https://demodomain.com" from accessing a cross-origin frame. 

Hice esto con firebase.json pero no funcionó

 "headers": [
     {
       "source": "**/*",
       "headers": [
         {"key": "X-Content-Type-Options", "value": "nosniff"},
         {"key": "X-Frame-Options", "value": "ALLOW"},
         {"key": "X-UA-Compatible", "value": "ie=edge"},
         {"key": "X-XSS-Protection", "value": "1; mode=block"}
       ]
     }
]

Respuestas a la pregunta(1)

Su respuesta a la pregunta