-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from AlecBlance/refactor/revamp
feat: 🎉 initial revamp version
- Loading branch information
Showing
58 changed files
with
6,118 additions
and
591 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"plugins": ["prettier-plugin-tailwindcss"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.