Created
May 1, 2016 01:47
-
-
Save jeandrek/2d6179acb5aaee5fcace732443166f25 to your computer and use it in GitHub Desktop.
Tips Browser for MIT Scratch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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