Greasy Fork is available in English.

Remove Reddit select text embed button

Remove Reddit select text embed button - new look reddit

// ==UserScript==
// @name        Remove Reddit select text embed button 
// @namespace   english
// @description    Remove Reddit select text embed button - new look reddit 
// @include     http*://*reddit.com*
// @version     1.1
// @run-at document-end
// @grant       GM_addStyle
// @license MIT
// ==/UserScript==


// Main - CSS hides two classes - video add box, and call to action box under it. - also social media

 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '     embed-snippet-share-button{display:none ;}     ';
document.getElementsByTagName('head')[0].appendChild(style);