Disable contextmenu blocking

    
      
  • /*
     * @title Disable contextmenu blocking
     * @description event catpture の活躍の場
     * @include http://*
     * @license CC0 https://creativecommons.org/publicdomain/zero/1.0/
     * @javascript_url
     */
    
    ['contextmenu', 'selectstart', 'copy'].forEach(ev => window.addEventListener(ev, e => e.stopPropagation(), true));
    document.head.appendChild(document.createElement('style')).textContent = '* { user-select: initial !important }';
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2020/11/27 15:03:31 - 2020-11-27
  2. 2020/11/27 15:00:36 - 2020-11-27
  3. 2020/11/27 14:59:39 - 2020-11-27