Metadata-Version: 2.2
Name: extension-maker
Version: 1.0.4
Summary: Easily create browser extensions/add-ons for browsers like Chrome, Firefox, or Edge.
Home-page: https://www.codehemu.com/p/extension-maker.html
Author: Hemanta Gayen
License: MIT
Project-URL: Source Code, https://github.com/hemucode/extension-maker
Project-URL: Bug Tracker, https://github.com/hemucode/extension-maker/issues
Project-URL: Changelog, https://github.com/hemucode/extension-maker/blob/master/CHANGELOG.md
Keywords: gui,executable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tk>=0.1.0
Requires-Dist: image>=1.5.33
Requires-Dist: requests
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: project-url
Dynamic: requires-dist
Dynamic: summary

<h1 align="center">Extension Maker</h1>

<p align="center">Easily create browser extensions/add-ons for browsers like Chrome, Firefox, or Edge.</p>

<p align="center">
    <a href="https://pypi.org/project/extension-maker/"><img src="https://raw.githubusercontent.com/hemucode/extension-maker/refs/heads/main/maker.PNG" alt="PyPI Version"></a>
    <a href="https://www.codehemu.com/p/donate.html"><img src="https://img.shields.io/badge/-buy_me_a%C2%A0beer-gray?logo=buy-me-a-coffee" alt="Donate"></a>

</p>
## Getting Started

### Prerequisites

- Python: 3.6-3.12

### Installation and Usage

#### Installing via [PyPI](https://pypi.org/project/extension-maker/)

You can install this project using PyPI:

```
$ pip install extension-maker
```

Then to run it, windows terminal:

```
C:\Users\user> python -m extension_maker
```
> If you have more than one version of Python installed, you can use `python -m  extension_maker` instead of `extension_maker`.

Then to run it, execute the following in the terminal:

```
$ extension-maker
```



#### Installing via [GitHub](https://github.com/hemucode/extension-maker)

```
$ git clone https://github.com/hemucode/extension_maker.git
$ cd extension_maker
$ python setup.py install
```

Then to run it, execute the following in the terminal:

```
$ extension_maker
```

#### Running Locally via [Github](https://github.com/hemucode/extension-maker) (no install)

You can run this project locally by following these steps:

1. Clone/download the [repo](https://github.com/hemucode/extension-maker)
2. Open cmd/terminal and cd into the project's root folder
3. Execute `python -m pip install -r requirements.txt`
4. Execute `python -m extension_maker` to run the application


_Easy._

