Created
September 7, 2017 14:06
A super simple user script with an unobtrusive way of being clear that it's running.
This file contains 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 Red Border | |
// @description A super simple user script with an unobtrusive way of being clear that it's running. | |
// @namespace test | |
// @include http* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
document.body.style.border = '3px dashed red'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment