Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

RomanFama592/yt-tools-extension

Repository files navigation

yt-tools-extension

Contributions? Welcome Maintained? Yes ESLint

"This extension allows you to enjoy several tools for the YouTube page."

Download this extension in the chrome store here.

use-extension-gif

📑 Contents

🚀 Project Structure

/
├── .devcontainer/
│     ├── Dockerfile
│     └── devcontainer.json
├── .github/
│     └── workflows/
│          ├── eslint.yml
│          └── update_readme.yml
├── docs/
│     ├── images/
│     │     └── use-extension.gif
│     ├── README.md.template.md
│     └── how-to-use-change-selector.md
├── public/
│     ├── content_scripts/
│     │     ├── auto-like.js
│     │     ├── auto-skip-ads.js
│     │     ├── auto-update-selectors.js
│     │     ├── functions.js
│     │     └── observer-changes-in-url.js
│     ├── icons/
│     │     ├── icon128.png
│     │     ├── icon16.png
│     │     ├── icon32.png
│     │     └── icon64.png
│     └── manifest.json
├── src/
│     ├── assets/
│     │     ├── css/
│     │     │     ├── App.css
│     │     │     ├── CounterInput.css
│     │     │     ├── Item.css
│     │     │     ├── Modal.css
│     │     │     ├── Switch.css
│     │     │     ├── TextInput.css
│     │     │     └── index.css
│     │     └── ts/
│     │          ├── options.ts
│     │          └── selectors.ts
│     ├── components/
│     │     ├── CounterInput.tsx
│     │     ├── Item.tsx
│     │     ├── Modal.tsx
│     │     ├── SelectorsTextInput.tsx
│     │     └── Switch.tsx
│     ├── context/
│     │     └── HandlerModal.tsx
│     ├── hooks/
│     │     └── useSaveInMemoryToExtension.tsx
│     ├── App.tsx
│     ├── main.tsx
│     └── vite-env.d.ts
├── utils/
│     ├── requirements.txt
│     └── resize_icons.py
├── .eslintrc.cjs
├── .gitignore
├── README.md
├── index.html
├── package-lock.json
├── package.json
├── resize_icons.sh
├── tsconfig.json
├── tsconfig.node.json
├── vite.config.ts
└── yarn.lock

Back to top 🔼


👨‍🏫 Installation

follow steps to run the project.

  1. Clone repository.

  2. Install package.json dependencies.

npm install
  1. Build the project.
npm run build
  1. Go to your browser's extensions settings.
  • example: chrome://extensions
  1. Tap the "load unpacked" button and enter the path to the dist folder that was created after building.

  2. And you can start developing and every change you make by executing the command in step 4 is perfect.

Back to top 🔼


👋 Contributions

If you have a suggestion that would make this better, please fork the repo and create a Pull Request. You can also simply open an issue

Don't forget to give the project a star ⭐! Thanks again!

  1. Fork the project

  2. Clone your fork

git clone https://github.com/@your_username/yt-tools-extension
  1. Create your Feature Branch
git checkout -b feature/AmazingFeature
  1. Push to the Branch
git push origin feature/AmazingFeature
  1. Open a Pull Request

Important: Use conventional commits and ensure that the code passes the linter test, pull requests are not accepted without this last point.

Back to top 🔼


👨‍⚖️ License

Distributed under the MIT License. See LICENSE for more information.

Back to top 🔼


📬 Contact me

Famá Román

Back to top 🔼