Skip to content

Instantly share code, notes, and snippets.

@jeandrek
Created May 1, 2016 01:47
Show Gist options
  • Save jeandrek/2d6179acb5aaee5fcace732443166f25 to your computer and use it in GitHub Desktop.
Save jeandrek/2d6179acb5aaee5fcace732443166f25 to your computer and use it in GitHub Desktop.
Tips Browser for MIT Scratch
// ==UserScript==
// @name Scratch tips browser
// @namespace scratchTipsBrowser
// @version 0.1.0
// @description Tips Browser for MIT Scratch
// @author Jonathan50
// @match https://cdn.scratch.mit.edu/scratchr2/static/*/help/en/home.html
// @grant none
// ==/UserScript==
var link = document.createElement('a');
link.textContent = 'Scratch homepage';
link.href = 'https://scratch.mit.edu/';
document.querySelector('#tip-content').appendChild(link);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment