A set of simple features to enhance reddit.
As of now RedditBoost only works with Chrome. To setup, either grab the extension from the Chrome web store or complete the following instructions,
- In Chrome, go to Settings->Extensions
- Check the "Developer mode" checkbox
- Click "Load unpacked extension..."
- Select the folder of the RedditBoost repo and press OK
- To disable, either uncheck the "Enabled" checkbox or click the trash can to permanently remove it
RedditBoost is intended to be a lightweight and mostly seamless version of RES for a small set of features. Below are some of the features added.
- Tagging users
- Hover over image links to preview them
- Block all selected user's submissions
- Hide all selected user's comments
- Disable Subreddit CSS
- Link mirrors
This project uses Gitflow so a feature branch and pull request to the develop branch are necessary if you want your feature pulled in. Additionally, this project follows a simplistic and clean commit style of the format "Action Very Short Summary" with a more thorough description following the commit title. Actions allowed are "Add, Remove, Update, Refactor, and Fix" all in the present tense. Any failure to follow this format will result in the pull request being rejected.
Install both of these prior to running this project.
- npm (package manager)
npm install -g typescript
After installing npm and typescript, open the command prompt and change your directory to RedditBoost's folder location. Run the following command to compile to JavaScript,
tsc -p .
While the JavaScript file is considered a build artifact, it is still included as part of a commit/pull request so that others can immediately run the latest development and master branches.