Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
什么是Paste Enforcer?
Paste Enforcer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“It will type the contents of your Clipboard so you can paste text in websites that block it”。
扩展截图
下载Paste Enforcer扩展crx文件
下载Paste Enforcer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
It will type the contents of your Clipboard so you can paste text in websites that block it. Just right click the field and select: "Force paste!"
扩展基本信息
名称 | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
官方URL | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
简介 | It will type the contents of your Clipboard so you can paste text in websites that block it |
文件大小 | 64.39 KB |
安装次数 | 1,677 |
当前版本 | 1.1 |
更新时间 | 2018-12-12 |
上架时间 | 2018-12-06 |
评分 | 5.00/5 共3次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paste Enforcer", "version": "1.1", "description": "It will type the contents of your Clipboard so you can paste text in websites that block it", "permissions": [ "contextMenus", "activeTab", "clipboardRead" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/jquery.js", "vendor\/bililiteRange.js", "vendor\/jquery.sendkeys.js", "content-script.js" ], "all_frames": true } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |