09/07/2025, 19:13:39
// ==UserScript==
// @name Enable text selection
// @namespace Violentmonkey Scripts
// @match https://sounah.com/hadith/*
// @match https://marketashraf.blogspot.com/2021/08/mofaex-gov-sy.html
// @grant none
// @version 1.0
// @author SHA
// @license GNU GPLv3
// @description 09/07/2025, 19:13:39
// ==/UserScript==
window.addEventListener("load", (event) => {
document.querySelector("head").appendChild(document.createElement("style"));
var styleSheet = document.styleSheets[document.styleSheets.length - 1];
styleSheet.insertRule("* {}", 0);
var universalSelector = styleSheet.cssRules[0];
universalSelector.style.setProperty("user-select", "text", "important");
});