Selection and Copying Restorer (Universal)

Ξεκλειδώστε το δεξί κλικ, καταργήστε τους περιορισμούς αντιγραφής, αποκοπής, επιλογής κειμένου, μενού δεξιού κλικ, αντιγραφής κειμένου, επιλογής κειμένου, δεξί κλικ σε εικόνα κ.λπ. Βελτιωμένες λειτουργίες: Επιλογή κειμένου υπερσυνδέσμου με το πλήκτρο Alt.

< Σχολιασμός για τον κώδικα Selection and Copying Restorer (Universal)

Αναφορά: Καλός - ο κώδικας λειτουργεί

§
Δημοσιεύτηκε: 11/03/2025

I tested the script on the site
https://webbrowsertools.com/test-right-click/
It works really well
But two tests
Method 12: Try to select text (via event blocking) Select this text
Method 13: copy text using right-click context menu (via overlay)
There is a problem, I hope it will be solved in future updates
Thank you

§
Δημοσιεύτηκε: 14/09/2025

Seems not working too with:
Method 15: right-click on the canvas (via overlap + pointer-events)
Method 16: right-click on an element with background image

I tested the script on the site
https://webbrowsertools.com/test-right-click/

Thank for the site, useful test page!

𝖢𝖸 𝖥𝗎𝗇𝗀Δημιουργός
§
Δημοσιεύτηκε: 15/09/2025
Επεξεργάστηκε: 15/09/2025

Method 12 - The text can be selected but the selection is transparent. You can still copy it using Ctrl-C To be checked whether it is fixed or not

            #test-right-click-12 :not(input):not(textarea)::selection {
                background-color: transparent!important;
                color: inherit!important
            }

Method 13 - Current I dont have the fix for this particular overlay

<td id="test-right-click-13">
  <div style="position:relative">
    <input value="Select this text">
    <div style="position:absolute;inset:0px"></div>
  </div>
</td>

Method 15 - canvas. not supported in this script

Method 16 - css background image. not supported in this script

§
Δημοσιεύτηκε: 15/09/2025
Method 12 - The text can be selected but the selection is transparent. You can still copy it using Ctrl-C To be checked whether it is fixed or not

Yes that's work!

To reveal selection :

/* METHODE 12 */
#test-right-click-12 :not(input):not(textarea)::selection {
background-color: lime !important;
color: red !important
}

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.