Greasy Fork

来自缓存

Greasy Fork is available in English.

选择和复制还原器(通用)

破解锁右键,解除禁止复制、剪切、选择文本、右键菜单、文字复制、文字选取、图片右键等限制。增强功能:Alt键超连结文字选取。

< 脚本 选择和复制还原器(通用) 的反馈

评价:好评 - 脚本运行良好

§
发布于:2025-03-11

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

§
发布于:2025-09-14

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!

§
发布于:2025-09-15
编辑于:2025-09-15

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

§
发布于:2025-09-15
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
}

发布留言

登录以发布留言。