Created
September 7, 2017 14:06
-
-
Save arantius/f6fd80b1efad368a45ca35567bc31b18 to your computer and use it in GitHub Desktop.
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