Skip to content

Instantly share code, notes, and snippets.

@falkreon
Created January 1, 2018 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save falkreon/0865ea95972ce70d24f96cade46e12d9 to your computer and use it in GitHub Desktop.
Save falkreon/0865ea95972ce70d24f96cade46e12d9 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Cybre.space Select Fix
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Stops text being mysteriously selected when you click underneath the toot box
// @author Falkreon, Unascribed
// @match https://cybre.space/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '.drawer__pager::after { content: ""; width: 100%; height: 100%; }';
document.getElementsByTagName('head')[0].appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment