Copy & Paste
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
什么是Copy & Paste?
Copy & Paste是由gal.bogdan2015开发的Chrome扩展程序,该扩展的主要功能是“The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…”。
扩展截图
下载Copy & Paste扩展crx文件
下载Copy & Paste扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them. Save the data you need with one click by simply copying it. Just use Ctrl+c.
扩展基本信息
名称 | Copy & Paste |
ID | oijiikmgkljldpbpddpmhiblpgkciobn |
官方URL | https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn |
简介 | The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have… |
文件大小 | 81.47 KB |
安装次数 | 889 |
当前版本 | 1.0 |
更新时间 | 2020-06-29 |
上架时间 | 2020-06-28 |
开发者 | gal.bogdan2015 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy & Paste", "version": "1.0", "icons": { "32": "img\/logo32.png", "48": "img\/logo48.png" }, "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/fonts.googleapis.com\/*", "storage" ], "background": { "scripts": [ "js\/libs\/jquery-3.2.1.min.js", "js\/libs\/safeResponse.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/oncopy.js" ] } ], "browser_action": { "default_title": "Copy & Paste", "default_icon": "img\/logo64.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |