some website hate that text is selected by user.
inconvenience.
kill.
anti user-select killer by ncaq
Details
Authorncaq
LicenseNo License
Category*
Created
Updated
Size320 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
2023-10-07:
fix: Safariだけ頑固にプレフィクスを要求するため追加
私はSafariは使いませんが、Firefoxの開発者ツールの互換性警告がものすごいことになるので対応します。
2020-04-29:
deleted: -webkit-user-select: EdgeがChromiumベースになったのでSafariをサポート外にする.
2019-07-24:
delete dup vender prefix
FirefoxとChromeはベンダープレフィクス不要.
必要なEdgeとSafariはwebkitのプレフィクスだけで動きます.
IEはサポート切りました.
Source code
/* ==UserStyle==
@name anti-user-select-killer
@namespace https://www.ncaq.net/
@author ncaq
@version 1.0.1
@license CC0-1.0
==/UserStyle== */
@-moz-document url-prefix("http://"), url-prefix("https://")
{
* {
-webkit-user-select: text !important;
user-select: text !important;
}
}