Double Click Open GoldenDict

double click to query selected word in goldendict

当前为 2024-03-14 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Double Click Open GoldenDict
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-03-15
  5. // @description double click to query selected word in goldendict
  6. // @icon https://www.google.com/s2/favicons?sz=64&domain=goldendict.org
  7. // @author Leon406
  8. // @license AGPL-3.0-or-later
  9. // @match *://*/*
  10. // @grant none
  11. // ==/UserScript==
  12. (function () {
  13. 'use strict';
  14. document.addEventListener("dblclick", e => {
  15. window.open("goldendict://" + getSelection().toString().trim())
  16. })
  17. })();