Skip to content

Commit

Permalink
Merge pull request #11 from AlecBlance/refactor/revamp
Browse files Browse the repository at this point in the history
feat: 🎉 initial revamp version
  • Loading branch information
AlecBlance authored Oct 8, 2024
2 parents fa5aed7 + 3d872ff commit a319ec6
Show file tree
Hide file tree
Showing 58 changed files with 6,118 additions and 591 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

46 changes: 21 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,34 @@
# S3BucketList v2.1
# S3BucketList v3.0.0

S3BucketList is a Chrome extension that records S3 Buckets found while browsing.
This will be ported into Firefox as soon as they support service workers.
Search, lists, and checks S3 Buckets found in network requests while you are browsing.

![](screenshot.png)
![alt text](image.png)

## Installation
1. Download the S3BucketList zip
2. Extract
3. Go to Google Chrome's Settings - icon > Tools > Extensions

1. Download the latest release zip
2. Extract
3. Go to Google Chrome's Settings > Tools > Extensions
4. Enable Developer Mode ( toggle button in top-right corner )
5. Click "Load unpacked" and locate the extracted zip from step 2
6. Browse
6. Browse the internet 🎉

## Checklist
- [ ] Filter
- [ ] New UI
- [ ] UI Bug fixes (scrolls to the top when deleting)
- [ ] Port to Firefox (will do if service workers will be supported)
- [ ] Performance boost
## Features

- Filters S3Buckets
- Extract ACL permissions
- Download buckets recorded
- Manage buckets recorded

## Built with
- HTML - Markup Language
- Javascript - Programming Language
## Roadmap

## Author
- Alec Blance
## Contributors
- Almira Ruby Montalvo - Design
## Acknowledgements
- [FreePik](https://www.flaticon.com/authors/freepik) - BucketList logo
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
- Add CI/CD for releases and versioning
- Add blacklisting

## Tech Stack

**Client:** React, TailwindCSS, shadcn, zustand, Chrome API

## Acknowledgements

Icon: <a href="https://www.flaticon.com/free-icons/bucket" title="bucket icons">Bucket icons created by Yuan Design - Flaticon</a>
94 changes: 0 additions & 94 deletions background.js

This file was deleted.

20 changes: 20 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/index.css",
"baseColor": "zinc",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
}
}
28 changes: 28 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'

export default tseslint.config(
{ ignores: ['dist'] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
)
Binary file removed icons/bucket.png
Binary file not shown.
Binary file added image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
26 changes: 0 additions & 26 deletions manifest.json

This file was deleted.

1 change: 0 additions & 1 deletion offscreen/offscreen.html

This file was deleted.

Loading

0 comments on commit a319ec6

Please sign in to comment.