https://github.com/surrsurus/copy-detector-bot
A discord bot that detects when an image has been replaced from elsewhere on the internet
https://github.com/surrsurus/copy-detector-bot
discord discord-bot discord-js reverse-image-search
Last synced: about 1 year ago
JSON representation
A discord bot that detects when an image has been replaced from elsewhere on the internet
- Host: GitHub
- URL: https://github.com/surrsurus/copy-detector-bot
- Owner: surrsurus
- License: mit
- Archived: true
- Created: 2019-01-30T14:42:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-30T14:48:43.000Z (over 7 years ago)
- Last Synced: 2025-03-24T11:45:59.888Z (about 1 year ago)
- Topics: discord, discord-bot, discord-js, reverse-image-search
- Language: JavaScript
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# copy-detector-bot
A discord bot that detects when an image has been replaced from elsewhere on the internet
## How it works
This bot will detect attachments and send them to google for a reverse image search. If a match is found, it will post a message in the channel to alert users to be wary of the poster's authenticity. This is mainly used to determine if someone is taking credit for art that isn't theirs.
## Requirements & Running
To install the dependencies, run the following:
```
npm install discord.js
npm install request
```
Then, to run the bot:
```
node bot.js
```
## Token file
Make sure there is a token.json file present in the same directory as `bot.js`
The token file should look like:
```json
{
"token": "Your token here",
}
```