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