Skip to content

Instantly share code, notes, and snippets.

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