PasteEnabler
Paste when you're not allowed, copy when you're not allowed!
什么是PasteEnabler?
PasteEnabler是由https://jonlu.ca开发的Chrome扩展程序,该扩展的主要功能是“Paste when you're not allowed, copy when you're not allowed!”。
扩展截图
下载PasteEnabler扩展crx文件
下载PasteEnabler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Reenables the following functionality on sites that disable it:
* Ability to paste content
* Ability to copy content
* Ability to cut content
* Ability to right click content
* Ability to autocomplete certain inputs
* Ability to select text
* Ability to drag and drop text to/from inputs
If a website does not allow you to copy and paste, or do any of the above, simply click the icon and try again!
Source code here: https://github.com/jonluca/PasteEnabler
Open an issue on GitHub if there are any sites on which this extension does not work! 扩展基本信息
| 名称 | |
| ID | dhadehfniifbmemochpmbofcjckpdnnl |
| 官方URL | https://chromewebstore.google.com/detail/pasteenabler/dhadehfniifbmemochpmbofcjckpdnnl |
| 简介 | Paste when you're not allowed, copy when you're not allowed! |
| 文件大小 | 28.6 KB |
| 安装次数 | 2,141 |
| 当前版本 | 0.3 |
| 更新时间 | 2021-06-10 |
| 上架时间 | 2019-05-03 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | https://jonlu.ca |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PasteEnabler",
"description": "Paste when you're not allowed, copy when you're not allowed!",
"version": "0.3",
"background": {
"scripts": [
"js\/background.js"
]
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "images\/icon.png"
},
"icons": {
"64": "images\/icon64.png",
"32": "images\/icon32.png",
"38": "images\/icon.png",
"128": "images\/icon128.png"
},
"homepage_url": "https:\/\/jonlu.ca",
"web_accessible_resources": [
"js\/*"
]
} | |