Szopen Xiao

Firefox 鼠标相关功能设置

2013-10-17

firefox nightly 版本在浏览器选项中去掉了 禁用或替换上下文菜单 修改功能, 只能在 about:config 中修改 dom.event.contextmenu.enabled 项来实现

firefox 禁止页面 屏蔽鼠标选择与鼠标导航 脚本

// ==UserScript==
// @name        PageProhibitSelect
// @namespace   disable.page.prohibit.user.select
// @include     http://*/*
// @version     1
// @grant       none
// ==/UserScript==

document.body.onselectstart = true;
document.body.style = '-moz-user-select: text !important';
comments powered by Disqus