Skip to content

Instantly share code, notes, and snippets.

@arantius
Created September 7, 2017 14:06
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