https://github.com/jaimeadf/BetterDiscordPlugins
A collection of plugins for the @BetterDiscord client modification (BiggerStreamPreview, WhoReacted, SecretRingTone and GuildProfile).
https://github.com/jaimeadf/BetterDiscordPlugins
bd bd-plugin betterdiscord betterdiscord-plugin discord enhancement plugins utility
Last synced: 5 months ago
JSON representation
A collection of plugins for the @BetterDiscord client modification (BiggerStreamPreview, WhoReacted, SecretRingTone and GuildProfile).
- Host: GitHub
- URL: https://github.com/jaimeadf/BetterDiscordPlugins
- Owner: jaimeadf
- License: mit
- Created: 2021-01-10T20:02:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-19T21:35:47.000Z (11 months ago)
- Last Synced: 2024-08-03T21:02:14.030Z (9 months ago)
- Topics: bd, bd-plugin, betterdiscord, betterdiscord-plugin, discord, enhancement, plugins, utility
- Language: JavaScript
- Homepage:
- Size: 1.1 MB
- Stars: 105
- Watchers: 4
- Forks: 46
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BetterDiscordPlugins
A collection of plugins for the [BetterDiscord](https://betterdiscord.app) client modification written by me with a lot of ☕.## [BiggerStreamPreview](packages/BiggerStreamPreview)
View bigger stream previews via the context menu.# Development
This project uses [lerna](https://lerna.js.org) and [yarn workspaces](https://classic.yarnpkg.com/lang/en/docs/workspaces) to divide each plugin into its own isolated container inside the `packages` folder.## Getting started
### Prerequisites
- [Git](https://git-scm.com)
- [Node.js](https://nodejs.org)
- [Yarn](https://yarnpkg.com)### Setup
```sh
# 1. Clone the repository and navigate to its directory:
git clone https://github.com/jaimeadf/BetterDiscordPlugins && cd BetterDiscordPlugins# 2. Install the dependencies:
yarn install# 3. Run the `watch:dev` script:
yarn watch:dev# Now, you may edit any plugin and see the changes take effect in real time.
# Happy coding 🎉!
```## Scripts
> Note: These scripts may be run for all plugins simultaneously from the project's root or independently from the plugin's directory.- `yarn build`: Builds the plugins for distribution.
- `yarn build:dev`: Builds the plugins directly into your plugins folder.
- `yarn watch:dev`: Watches for any changes and automatically builds the plugins directly into your plugins folder.