Greasy Fork is available in English.
页面添加悬浮按钮,点击复制页面链接,改善 edge-dev 版不能复制 url 的问题
当前为
// ==UserScript== // @name 复制网页链接 // @namespace copy-url // @description 页面添加悬浮按钮,点击复制页面链接,改善 edge-dev 版不能复制 url 的问题 // @version 1.0 // @author [email protected] // @include * // ==/UserScript== (function() { 'use strict'; document.body.addEventListener('dblclick', function() { navigator.clipboard.writeText(window.location.href); }); })();