Greasy Fork

Greasy Fork is available in English.

复制网页链接

页面添加悬浮按钮,点击复制页面链接,改善 edge-dev 版不能复制 url 的问题

目前为 2020-09-15 提交的版本。查看 最新版本

// ==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);
  });
})();