Skip to content

Latest commit

 

History

History
87 lines (51 loc) · 2.52 KB

File metadata and controls

87 lines (51 loc) · 2.52 KB

TamperMonkey

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

Install TamperMonkey

https://www.tampermonkey.net/

TamperMonkey Scripts

My TamperMonkey scripts and their easy installation instructions are in the README home page of my TamperMonkey repo:

Readme Card

Notable scripts include:

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

Script Sharing 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.