Skip to content

Instantly share code, notes, and snippets.

@alanhg
Created December 24, 2023 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanhg/dc41f81f4b8ece50e5141c20d30ea963 to your computer and use it in GitHub Desktop.
Save alanhg/dc41f81f4b8ece50e5141c20d30ea963 to your computer and use it in GitHub Desktop.
文本选中支持
// ==UserScript==
// @name 文本选中支持
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://m.163.com/*/article/*
// @match https://www.baidu.com/bh/dict/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=163.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.body.style.userSelect='auto';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment