A collection of userscripts (GreaseMonkey/TamperMonkey/ViolentMonkey) to enhance web development workflows across different platforms. Each website has its own folder containing relevant scripts.
Dev-MonkeyScripts/
βββ README.md
βββ github/ # GitHub enhancement scripts
βββ pr-review-template-auto.js
βββ pr-review-template.js
βββ quick-selection-bullets.js
-
Install a userscript manager:
- Tampermonkey (Recommended)
- Greasemonkey (Firefox)
- Violentmonkey
-
Click the "Raw" button on any
.jsfile in this repository -
Your userscript manager should automatically detect and offer to install the script
-
Click "Install" to add the script
- Create a folder for the target website (e.g.,
gitlab/,bitbucket/) - Add your userscript files with proper metadata headers:
// ==UserScript==
// @name Your Script Name
// @namespace https://example.com/
// @version 1.0
// @match https://target-site.com/*
// @grant none
// ==/UserScript==- Fork the repository
- Create a new folder for your target website if it doesn't exist
- Add your userscript with proper documentation
- Update this README with script details
- Submit a pull request
This project is open source. Feel free to use, modify, and distribute these scripts.
If you encounter any issues or have feature requests:
- Check if the userscript manager is up to date
- Verify the target website hasn't changed their UI
- Check browser console for JavaScript errors
- Create an issue in this repository with details
Happy scripting! π