Skip to content

Commit

Permalink
增加两个event; 增加更多语言的名称与描述
Browse files Browse the repository at this point in the history
  • Loading branch information
Cat7373 committed Nov 29, 2015
1 parent fdbe570 commit 9e4691e
Showing 1 changed file with 33 additions and 27 deletions.
60 changes: 33 additions & 27 deletions remove_web_limits.user.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,42 @@
// ==UserScript==
// @namespace https://www.github.com/Cat7373/

// @name 网页限制解除
// @name:en Remove web limits
// @name:zh 网页限制解除

// @description 通杀大部分网站,可以解除禁止复制、剪切、选择文本、右键菜单的限制。
// @description:en Pass to kill most of the site, you can lift the restrictions prohibited to copy, cut, select the text, right-click menu.
// @description:zh 通杀大部分网站,可以解除禁止复制、剪切、选择文本、右键菜单的限制。

// @homepageURL https://cat7373.github.io/remove-web-limits/
// @supportURL https://github.com/Cat7373/remove-web-limits/issues/
// @updateURL https://cat7373.github.io/remove-web-limits/remove_web_limits.user.js

// @author Cat73
// @version 1.2.1
// @license LGPLv3

// @compatible chrome Chrome_46.0.2490.86 + TamperMonkey + 脚本_1.2.1 测试通过
// @compatible firefox Firefox_42.0 + GreaseMonkey + 脚本_1.2.1 测试通过
// @compatible opera Opera_33.0.1990.115 + TamperMonkey + 脚本_1.1.3 测试通过
// @compatible safari 未测试

// @match *://*/*
// @grant none
// @run-at document-start
// @namespace https://www.github.com/Cat7373/

// @name Remove web limits
// @name:en Remove web limits
// @name:zh 网页限制解除
// @name:zh-CN 网页限制解除
// @name:zh-TW 網頁限制解除
// @name:ja ウェブの規制緩和

// @description Pass to kill most of the site, you can lift the restrictions prohibited to copy, cut, select the text, right-click menu.
// @description:en Pass to kill most of the site, you can lift the restrictions prohibited to copy, cut, select the text, right-click menu.
// @description:zh 通杀大部分网站,可以解除禁止复制、剪切、选择文本、右键菜单的限制。
// @description:zh-CN 通杀大部分网站,可以解除禁止复制、剪切、选择文本、右键菜单的限制。
// @description:zh-TW 通殺大部分網站,可以解除禁止復制、剪切、選擇文本、右鍵菜單的限制。
// @description:ja サイトのほとんどを殺すために渡し、あなたは、コピー切り取り、テキスト、右クリックメニューを選択することは禁止の制限を解除することができます。

// @homepageURL https://cat7373.github.io/remove-web-limits/
// @supportURL https://github.com/Cat7373/remove-web-limits/issues/
// @updateURL https://cat7373.github.io/remove-web-limits/remove_web_limits.user.js

// @author Cat73
// @version 1.2.2
// @license LGPLv3

// @compatible chrome Chrome_46.0.2490.86 + TamperMonkey + 脚本_1.2.1 测试通过
// @compatible firefox Firefox_42.0 + GreaseMonkey + 脚本_1.2.1 测试通过
// @compatible opera Opera_33.0.1990.115 + TamperMonkey + 脚本_1.1.3 测试通过
// @compatible safari 未测试

// @match *://*/*
// @grant none
// @run-at document-start
// ==/UserScript==


// 要处理的event
var hook_eventNames = "contextmenu|select|selectstart|copy|cut|dragstart".split("|");
var unhook_eventNames = "mousedown|keydown".split("|");
var unhook_eventNames = "mousedown|mouseup|keydown|keyup".split("|");
var eventNames = hook_eventNames.concat(unhook_eventNames);
var eventNames_on = [];
// 储存名称
Expand Down

0 comments on commit 9e4691e

Please sign in to comment.