Skip to content

Latest commit

 

History

History
85 lines (50 loc) · 2.39 KB

File metadata and controls

85 lines (50 loc) · 2.39 KB

TamperMonkey

Browser extension to modify the behaviour of web pages using scripts.

Install TamperMonkey

https://www.tampermonkey.net/

TamperMonkey Scripts

Click the TamperMonkey extension -> Create New Script and then paste in the script from below:

Tel to WhatsApp

Auto-converts +tel: links to WhatsApp clickable links for convenience on 3rd party websites.

tel_to_whatsapp.js

Jira Description Autofill

Auto-fills Jira description field with Agile template.

jira_description_autofill.js

Readme Card

Script Sites

https://www.tampermonkey.net/scripts.php

UserScript.Zone

https://www.userscript.zone/

Greasy Fork

https://greasyfork.org/en

OpenUserJS

Less focused than the above two resources.

Warning: some NSFW topics on here:

https://openuserjs.org/

Troubleshooting

Script Not Triggering

Check the @match line in the script matches the URL.

No Scripts Are Triggering / Logging

Try adding a test script with the @match line and a simple:

console.log(`Test Script: Initializing...`);

and then look for this in your Chrome Developer Tools or equivalent Console area where the logs are shown.

If even this doesn't show up... then no scripts are executing on your @match.

After much time wasted debugging everything, checking my GitHub revision controlled script was the same as the one in TamperMonkey, the solution was simple:

Solution: remove TamperMonkey and reinstall it to get scripts triggering again.