This is a simple Chrome extension that enhances your browsing experience by providing additional functionality.
my-chrome-extension
├── src
│ ├── background.js # Background script for managing extension lifecycle
│ ├── content.js # Content script for interacting with web pages
│ ├── popup
│ │ ├── popup.html # HTML structure for the popup
│ │ ├── popup.js # JavaScript logic for the popup
│ │ └── popup.css # Styles for the popup
│ └── manifest.json # Configuration file for the Chrome extension
├── package.json # npm configuration file
└── README.md # Documentation for the project
-
Clone the repository or download the source code.
-
Navigate to the project directory.
-
Install dependencies using npm:
npm install
- Open Chrome and go to
chrome://extensions/. - Enable "Developer mode" in the top right corner.
- Click on "Load unpacked" and select the
my-chrome-extension/srcdirectory. - The extension should now be loaded and ready to use.
Feel free to submit issues or pull requests if you have suggestions or improvements for the extension.
This project is licensed under the MIT License.