您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically convert line feed (LF) to carriage return + line feed (CRLF) when copying text from web pages. 可以让复制的greasy fork代码支持在via直接新建,也可以让系统菜单复制的通义千问移动端网页的代码在便签APP正常换行。UserScript完全由通义千问生成。
当前为
// ==UserScript== // @name Convert LF to CRLF // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description Automatically convert line feed (LF) to carriage return + line feed (CRLF) when copying text from web pages. 可以让复制的greasy fork代码支持在via直接新建,也可以让系统菜单复制的通义千问移动端网页的代码在便签APP正常换行。UserScript完全由通义千问生成。 // @author 幸福的赢得 // @match *://greasyfork.org/*/scripts/*/code* // @match *://update.greasyfork.org/* // @match *://tongyi.aliyun.com/* // @grant none // ==/UserScript== (function() { 'use strict'; document.addEventListener('copy', function(event) { var selection = window.getSelection().toString(); if (!selection.includes('\n')) return; event.preventDefault(); // Replace LF with CRLF var modifiedSelection = selection.replace(/\n/g, '\r\n'); // Put the modified text on the clipboard event.clipboardData.setData('text/plain', modifiedSelection); }); })();