-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(v0.4.8): upgrade to plus, modified header
- Loading branch information
Showing
3 changed files
with
72 additions
and
50 deletions.
There are no files selected for viewing
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,56 +1,55 @@ | ||
<h1 align="center">fake-chatgpt-plus</h1> | ||
<h1 align="center">Fake ChatGPT Plus</h1> | ||
<p> | ||
<img alt="Version" src="https://img.shields.io/badge/version-0.4.6-blue.svg?cacheSeconds=2592000" /> | ||
<img alt="Version: 0.4.8" src="https://img.shields.io/badge/version-0.4.8-blue.svg?cacheSeconds=2592000" /> | ||
<a href="https://github.com/itsrn/fake-chatgpt-plus/blob/main/LICENSE" target="_blank"> | ||
<img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg" /> | ||
</a> | ||
</p> | ||
|
||
> A chrome extension that makes it look like you have ChatGPT Plus. Designed for free users only. | ||
> A chrome extension (also works for other chromium browsers) that makes it look like you have ChatGPT Plus. Designed for free users only. | ||
## Install | ||
- Click on the green "code" button | ||
- Select download zip | ||
|
||
- Click on the green "Code" button | ||
- Select "Download zip" | ||
|
||
## Usage | ||
- Unzip the folder | ||
- Go to [Chrome's Manage Extensions page](chrome://extensions/) | ||
- Toggle the "developer mode" option | ||
|
||
- Unzip the downloaded folder | ||
- Go to your browser's manager extensions page. For example, on chrome: `chrome://extensions/`. | ||
- Toggle the "Developer mode" option | ||
- Click on "Load unpacked" button | ||
- Select your unzipped folder | ||
- Go to [ChatGPT's website](https://chat.openai.com) | ||
- Enjoy your fake looking ChatGPT Plus! | ||
|
||
## Author | ||
|
||
👤 **Ron Nuss** | ||
|
||
* Website: https://itsron.space | ||
* Github: [@itsrn](https://github.com/itsrn) | ||
* LinkedIn: [@itsrn](https://linkedin.com/in/itsrn) | ||
|
||
## 🤝 Contributing | ||
|
||
Contributions, issues and feature requests are welcome!<br />Feel free to check [issues page](https://github.com/itsrn/fake-chatgpt-plus/issues). | ||
Contributions, issues and feature requests are welcome!<br />Feel free to check [issues page](https://github.com/itsrn/fake-chatgpt-plus/issues). | ||
|
||
## Show your support | ||
|
||
Give a ⭐️ if you likes this project and want to support me! | ||
|
||
## Version History | ||
* 0.4.6 *(Supported and Recommended)* | ||
* Fixed ChatGPT's logo background color is not changed to purple (like the GPT 4 one) | ||
* 0.4.4 *(Not supported)* | ||
* Fixed ["Upgrade to plus" button to stop showing](https://github.com/itsrn/fake-chatgpt-plus/issues/3) | ||
* 0.4.2 *(Not supported)* | ||
* Fixed [Profile buttons doesn't appear](https://github.com/itsrn/fake-chatgpt-plus/issues/1). | ||
* 0.4.0 *(Not supported)* | ||
* Initial Release. | ||
|
||
- 0.4.8 | ||
- Fixed the "Upgrade to plus" button being shown | ||
- Updated the header ("`Default (GPT-X)`") text to GPT-4 | ||
|
||
> All of the versions below `v0.4.8` are now counted as legacy versions that | ||
> are not support or recommended. Please upgrade to newer version if you are using one of them. | ||
- 0.4.6 | ||
- Fixed ChatGPT's logo background color is not changed to purple (like the GPT 4 one) | ||
- 0.4.4 | ||
- Fixed ["Upgrade to plus" button to stop showing](https://github.com/itsrn/fake-chatgpt-plus/issues/3) | ||
- 0.4.2 | ||
- Fixed [Profile buttons doesn't appear](https://github.com/itsrn/fake-chatgpt-plus/issues/1). | ||
- 0.4.0 | ||
- Initial Release. | ||
|
||
## 📝 License | ||
|
||
Copyright © 2023 [Ron Nuss](https://github.com/itsrn).<br /> | ||
This project is [MIT](https://github.com/itsrn/fake-chatgpt-plus/blob/main/LICENSE) licensed. | ||
|
||
*** | ||
_This README was generated with [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_ |
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
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,12 +1,14 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Fake ChatGPT Plus", | ||
"version": "0.4.2", | ||
"description": "Make it look like you have ChatGPT Plus", | ||
"host_permissions": ["https://chat.openai.com/*"], | ||
"content_scripts": [{ | ||
"matches": ["https://chat.openai.com/*"], | ||
"js": ["index.js"], | ||
"run_at": "document_idle" | ||
}] | ||
} | ||
"manifest_version": 3, | ||
"name": "Fake ChatGPT Plus", | ||
"version": "0.4.8", | ||
"description": "Make it look like you have ChatGPT Plus.", | ||
"host_permissions": ["https://chat.openai.com/*"], | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://chat.openai.com/*"], | ||
"js": ["index.js"], | ||
"run_at": "document_idle" | ||
} | ||
] | ||
} |