博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vim 启用右键粘贴_如何在阻止文本的网站上启用粘贴文本
阅读量:2516 次
发布时间:2019-05-11

本文共 2276 字,大约阅读时间需要 7 分钟。

vim 启用右键粘贴

vim 启用右键粘贴

paypal

Some companies think they’re increasing security by disabling your ability to paste into form fields, such as the password field. But in reality, all they’re doing is frustrating users–and  by blocking password managers. Here’s how to solve this annoyance in Chrome and Firefox.

一些公司认为,通过禁用您粘贴到表单字段(例如密码字段)的功能,他们正在提高安全性。 但实际上,他们所做的只是让用户感到沮丧-并通过阻止密码管理器来。 以下是解决Chrome和Firefox中这种烦恼的方法。

在Chrome中:使用“不要粘贴粘贴”扩展程序 (In Chrome: Use the “Don’t F*ck with Paste” Extension)

If Chrome is your browser of choice, the easiest solution to your pasting problems is . Add that extension to Chrome, and it will just work quietly in the background. It tells the browser to accept all paste events and skip any paste event handlers on the page.

如果您选择使用Chrome浏览器,那么解决粘贴问题最简单的方法就是 。 将扩展程序添加到Chrome中,它将在后台安静地运行。 它告诉浏览器接受所有粘贴事件,并跳过页面上的所有粘贴事件处理程序。

This is , in case you’re interested:

如果您有兴趣,这是:

var allowPaste = function(e){  e.stopImmediatePropagation();  return true;};document.addEventListener('paste', allowPaste, true);

But you don’t really need to know that. It’s just a simple extension that worked for me with PayPal and Western Union (which a similar extension, , couldn’t fix).

但是您真的不需要知道这一点。 这只是一个适用于PayPal和Western Union的简单扩展程序(类似的扩展程序不能解决)。

在Firefox中:修改您的配置设置 (In Firefox: Modify Your Configuration Settings)

Firefox users don’t need to use an extension, but instead can change the browser’s behavior in the configuration settings.

Firefox用户不需要使用扩展名,而是可以在配置设置中更改浏览器的行为。

Head to about:config in Firefox and click the “I’ll be careful, I promise!” button to proceed past the warning.

在Firefox中转到about:config,然后单击“我会保证,我保证!” 按钮以超过警告。

firefox-config650

Search for dom.event.clipboardevents.enabled  in the search box. It’ll be the only option once you type in “dom.event.cl”:

在搜索框中搜索dom.event.clipboardevents.enabled 。 输入“ dom.event.cl”后,它将是唯一的选项:

firefox-config650-2

Double-click on the setting to change the value from “true” to “false”.

双击设置,将值从“ true”更改为“ false”。

firefox-config650-3

Now websites can’t mess with your clipboard or block your ability to copy and paste.

现在,网站不再混乱您的剪贴板或阻止您进行复制和粘贴的功能。

It’s terrible that we have to jump through hoops to easily use our long passwords on many sites, but at least it only takes a couple of minutes to fix this frustration. 

可怕的是,我们不得不跳过许多小节才能轻松地在许多站点上使用我们的长密码,但是至少只需几分钟就可以解决此问题。

翻译自:

vim 启用右键粘贴

转载地址:http://poawd.baihongyu.com/

你可能感兴趣的文章
github高效搜索使用总结
查看>>
osg 基本几何图元
查看>>
tyvj 1305 —— 长度不超过m的最大连续和 【前缀和+单调队列】
查看>>
HDU -1213 How Many Tables
查看>>
关于CG Relighting系统设计的片言碎语
查看>>
shell脚本-传参方式
查看>>
配置本地SVN[转载]
查看>>
团队任务 3 每日立会
查看>>
Android——LayoutInflater详解
查看>>
一个一线城市的IT白领的生活成本:3万/年
查看>>
ubuntu12.04 使用Adobe Reader PDF
查看>>
吃货联盟订餐系统(二)
查看>>
MessageBox 用法
查看>>
Developing school contest 2
查看>>
本文来自CSDN博客 map
查看>>
python 字符串中替换字符
查看>>
mysql命令行编辑模式
查看>>
x-www-form-urlencoded
查看>>
linux执行cmd之一
查看>>
LoadRunner基于HTML-based script和URL-based script方式录制的区别和各自的使用场景
查看>>