MyContextMenu

原生js右键弹出菜单

Bu script direkt olarak kurulamaz. Başka scriptler için bir kütüphanedir ve meta yönergeleri içerir // @require https://update.greasyfork.org/scripts/464425/1178359/MyContextMenu.js

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
wish king
Versiyon
0.0.1.20230419170059
Oluşturulma
19.04.2023
Güncellenme
19.04.2023
Boyut
10,7 KB
Lisans
N/A

原生js右键弹出菜单
修改自:https://github.com/electerious/basicContext/

在线预览:
https://jsrun.net/k5dKp/embedded/all/light

截图:


使用示例:

const clicked = function(e) {
    console.log(e.target.innerHTML);
}
document.querySelector('.my-context-menu-btn').addEventListener('contextmenu', function(e){
    const items = [
        { title: '新标签打开链接', extAttr: "data-name='new-blank'", fn: clicked },
        { },
        { title: '复制链接地址', extAttr: "data-name='copy-link'", fn: clicked },
        { title: '复制选中的文本', extAttr: "data-name='copy-text'", fn: clicked, disabled: true },
        { title: '复制响应数据', extAttr: "data-name='copy-response'", fn: clicked},
        { },
        { title: '复制为cURL格式', extAttr: "data-name='copy-curl'", fn: clicked},
        { title: '复制为fetch格式', extAttr: "data-name='copy-fetch'", fn: clicked},
        { title: '复制为await格式', extAttr: "data-name='copy-await'", fn: clicked},
        { title: '复制为xhr格式', extAttr: "data-name='copy-xhr'", fn: clicked},
        { title: '复制为分享链接', extAttr: "data-name='copy-share'", fn: clicked},
        { },
        { title: '删除该请求', extAttr: "data-name='del-request'", fn: clicked},
        { title: '删除所有请求', extAttr: "data-name='del-all-request'", fn: clicked }
    ]
    basicContext.show(items, e);
});