web-dev-qa-db-ja.com

サイトがコピーアンドペーストを無効にしないようにするGreasemonkeyスクリプト(またはFirefox拡張機能)?

Firefox(3.0)でJavaScriptのコピーアンドペーストを無効にするGreaseMonkeyスクリプトはありますか?または、これを試みるサイトでNoScriptまたはその他の拡張機能を実行する必要がありますか(他のものが壊れることがあります...)?

[暴言] JavaScriptの絶対に最悪の「賢い」使用。幸い、Safariの方が使いやすく、コピーと貼り付けを無効にするJavaScriptハックを無視します。 Mozillaの誰が、それがまったく受け入れられると思いましたか?恥ずかしい。ちなみに、IEさん、この「機能」を最初に追加したブラウザはどれですか? [/ rant]

13
Jared Updike

ザ・ (リンク切れ) diveintogreasemonkey.orgのAnti-Disablerスクリプトdocument.document.wrappedJSObject.に置き換えると機能します

リンクが切れているようです。ウェイバックリンクは次のとおりです。 http://web.archive.org/web/20110830050224/http://diveintogreasemonkey.org/download/antidisabler.user.js

スクリプトは次のとおりです。

// Anti-Disabler
// version 0.5 BETA!
// 2005-06-28
// Copyright (c) 2005, Mark Pilgrim
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Anti-Disabler", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          Anti-Disabler
// @namespace     http://diveintomark.org/projects/greasemonkey/
// @description   restore context menus on sites that try to disable them
// @include       *
// @exclude       http://mail.google.com/*
// @exclude       https://mail.google.com/*
// ==/UserScript==

(function() {
    var e, i, all;

    document.onmouseup = null;
    document.onmousedown = null;
    document.oncontextmenu = null;

    all = document.getElementsByTagName("*");
    for (i = 0; i < all.length; i += 1) {
        e = all[i];
        e.onmouseup = null;
        e.onmousedown = null;
        e.oncontextmenu = null;
    }
})();

//
// ChangeLog
// 2005-06-28 - 0.5 - MAP - updated GMail URL
// 2005-04-21 - 0.4 - MAP - linted
// 2005-04-21 - 0.3 - MAP - exclude GMail
// 2005-04-18 - 0.2 - MAP - tidy code
// 2005-04-01 - 0.1 - MAP - initial release
//
4
Sam Hasler

About:configに移動し、dom.event.clipboardevents.enabledをfalseに設定することをお勧めします。これにより、ページがクリップボードに干渉するという問題が解消されました。

2
user169501

自分のホーンを鳴らすことはあまりありません。私は実際に誰かが私のスクリプトよりも優れた方法を持っているかどうかを探していました:

http://userscripts.org/scripts/show/13106

最終的には、JavaScriptエントリをブロックしてイベントを貼り付けるオプションをブラウザ内に配置したいと思います。

1
scuba_mike

古き良き NoScript オプションとfirefox
私はあなたの答えでサイトを試し、右クリックして保存することを許可されました。
次に、サイトのjavascriptブロックを開いて、右クリックでブロックされました!

0
nik

FirefoxのJavascript設定で次のオプションを無効にするだけです(警告はJavascriptメッセージであるため無効にはなりませんが、Webページでコンテキストメニューを無効にすることはできなくなりました)。

enter image description here

0
TFM

試したことはありません:

ブラウザを取り戻す:それらを無効にするサイトでコンテキストメニューを再度有効にする

しかし、それは可能性のあるリードです。

0
Jared Updike