A static html page tool for AWS S3
Firefox Add-ons: https://addons.mozilla.org/en-US/firefox/addon/aws-s3-tool
- For global, you should upload these files to any bucket of US-Standard region, and set them public readable.
- For China Region, you should upload these files to any bucket of CN-NORTH-1 region, and set them public readable.
- Open the index.html, input accessKey and secretAccessKey and then click OK button.
Notice: You should use the HTTPS not HTTP, otherwise parts of functions cannot work. - If you want to manage a bucket locates on other region, please configure the CORS configuration like:
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>https://s3.amazonaws.com</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>