You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.6 KiB
1.6 KiB
How To Set Up Tampermonkey
Tampermonkey is a browser extension that allows you to run custom scripts on web pages to modify their behavior. This can range from reloading automatically every 5 minutes to completely automating some task through the DOM. The steps below will walk you through how to install Tampermonkey and set up a script.
- Install Tampermonkey from one of the following locations:
- Firefox Addons: https://addons.mozilla.org/en-US/firefox/addon/tampermonkey/
- Microsoft Edge Addons: https://microsoftedge.microsoft.com/addons/detail/tampermonkey/iikmkjmpaadaobahmlepeloendndfphd
- The Chrome Web Store: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo - Once the extension is installed review the permissions and click on okay. The extension won't do anything on its own. The permissions dictate what you will be able to do with the web pages you load.
- Click on the new icon on the top right of your browser and then select the Dashboard menu item near the bottom.
- Near the tabs on the top right of the page you will see a plus sign in a box. Click on this to create a new script.
- Navigate to the script you would like to install, copy all the text, and paste it into the new text field replacing everything that may already be there.
- Press ctrl+s to save and the script will now run where it is configured to.
- Enjoy! You can add more scripts the same way or enable/disable them on the dashboard as well.
There's probably another way to install scripts from a link but this seems easy enough for now