A GUI AWS S3 file manager. It supports keyword search, download, upload and preview video.
https://aws.amazon.com/s3/pricing/
This project uses Access Key to access your S3 bucket, so enable "Block all public access" is ok.
https://aws.amazon.com/getting-started/hands-on/backup-files-to-amazon-s3/
https://objectivefs.com/howto/how-to-get-amazon-s3-keys
Ths policy example:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::your-bucket",
"arn:aws:s3:::your-bucket/*"
],
"Condition": {
"ForAnyValue:IpAddress": {
"aws:SourceIp": [
"0.0.0.0/0"
]
}
}
}
]
}
You can set ip whitelist at "aws:SourceIp".
git clone https://github.com/kelp404/electron-s3-file-manager.git
cd electron-s3-file-manager
npm install
npm start
Remove utils.loadStylesheet('dark-theme.css');
at render-process/index.js
.
const darkreader = require('darkreader');
darkreader.enable({
brightness: 100,
contrast: 90,
sepia: 10,
});
darkreader.exportGeneratedCSS().then(console.log);
npm run makemigration
npm run runmigration