1// create file cors.json, containing:
2[
3 {
4 "origin": ["http://origin1.example.com"], // or ["*"] to allow all
5 "responseHeader": ["Content-Type"],
6 "method": ["GET"],
7 "maxAgeSeconds": 3600
8 }
9]// then
10$ gsutil cors set ./cors.json gs://<bucket_name>...