Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 🎉 initial revamp version #11

Merged
merged 19 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
3ea9872
feat: :tada: initial revamp version
AlecBlance Oct 3, 2024
ef56d82
feat: :sparkles: add number indication on each tab
AlecBlance Oct 5, 2024
785d3eb
fix: :bug: missing other permissions
AlecBlance Oct 5, 2024
303780a
style: :lipstick: smaller text for each bucket info
AlecBlance Oct 5, 2024
405d3a5
refactor: :recycle: not accordion content if no permissions (error tab)
AlecBlance Oct 5, 2024
f35d175
feat: :sparkles: add switch to disable recording of buckets
AlecBlance Oct 5, 2024
bbfb710
feat: :sparkles: footer for app info
AlecBlance Oct 5, 2024
1841e56
feat: :sparkles: recording status indication
AlecBlance Oct 5, 2024
50abd78
feat: :sparkles: indication for new found buckets and proper sorting
AlecBlance Oct 6, 2024
a6a2543
fix: :bug: cleared "no recording indication" even it is not recording
AlecBlance Oct 6, 2024
ff9b19e
refactor: :recycle: readjustment of data structure
AlecBlance Oct 7, 2024
b794ea0
feat: :sparkles: remove button for individual buckets
AlecBlance Oct 7, 2024
ef72a05
docs: :memo: temporary documentation
AlecBlance Oct 7, 2024
fe5d72c
perf: :zap: memoize components
AlecBlance Oct 7, 2024
adb4f6c
refactor: :recycle: remove unnecessary hook
AlecBlance Oct 7, 2024
4cc8816
fix: :bug: delay in removing new badge
AlecBlance Oct 7, 2024
34dadbd
feat: :sparkles: menu with clear and download
AlecBlance Oct 7, 2024
ad2c392
style: :lipstick: remove outline in kebab icon
AlecBlance Oct 7, 2024
3d872ff
docs: :memo: version 3 documentation
AlecBlance Oct 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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