Сообщение от Nexus
|
https://developer.mozilla.org/en-US/...SS/user-select
Выполните на странице этот скрипт и все пройдет:
var s = document.createElement('style');
s.innerHTML = 'html body * {-webkit-user-select: initial !important;-moz-user-select: initial !important;-ms-user-select: initial !important;user-select: initial !important;}';
document.head.appendChild(s);
Можете сохранить этот адрес как закладку и тыкать в нее каждый раз, как нужно будет включить выделение:
javascript:(function () {var s = document.createElement('style');s.innerHTML = 'html body * {-webkit-user-select: initial !important;-moz-user-select: initial !important;-ms-user-select: initial !important;user-select: initial !important;}';document.head.appendChild(s)})();
|
аааа...
Я про CSS и не подумал, искал всякие слушатели мышки и нажатия кнопок)))
Спасибо, очень интересно, попробую, как время будет.