Created
January 1, 2018 18:26
-
-
Save falkreon/0865ea95972ce70d24f96cade46e12d9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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