Greasy Fork is available in English.
Double-click to go to code location in PDF on Overleaf (works as well as the button on Overleaf, which sometimes has issues)
// ==UserScript==
// @name Double-click for SyncTeX goto-pdf on Overleaf
// @namespace http://sloan.nietert.me
// @version 0.1
// @description Double-click to go to code location in PDF on Overleaf (works as well as the button on Overleaf, which sometimes has issues)
// @author Sloan Nietert
// @match https://www.overleaf.com/project/*
// @icon https://www.google.com/s2/favicons?domain=overleaf.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById("editor").addEventListener("dblclick", function () {
document.getElementsByClassName('synctex-control-goto-pdf')[0].click()
} );
})();