V2 Cloud Clipboard
Allows users to have direct clipboard access when using V2 Cloud Web Connect
What is V2 Cloud Clipboard?
V2 Cloud Clipboard is a Chrome extension developed by https://v2cloud.com, and its main feature is "Allows users to have direct clipboard access when using V2 Cloud Web Connect".
Download V2 Cloud Clipboard Extension CRX File
Download V2 Cloud Clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The extension enables bidirectional clipboard (copy/paste) in the V2 Cloud Web Connect module.
Extension Basic Information
Name | V2 Cloud Clipboard |
ID | npeefbcdhnfpefakhdpljllcbpegkopl |
Official URL | https://chromewebstore.google.com/detail/v2-cloud-clipboard/npeefbcdhnfpefakhdpljllcbpegkopl |
Description | Allows users to have direct clipboard access when using V2 Cloud Web Connect |
File Size | 43.33 KB |
Installation Count | 269 |
Current Version | 1.5 |
Last Updated | 2018-03-08 |
Publish Date | 2018-03-07 |
Developer | https://v2cloud.com |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "V2 Cloud Clipboard", "version": "1.5", "description": "Allows users to have direct clipboard access when using V2 Cloud Web Connect", "icons": { "16": "icons\/clipboard-allow-16.png", "32": "icons\/clipboard-allow-32.png", "48": "icons\/clipboard-allow-48.png", "64": "icons\/clipboard-allow-64.png", "128": "icons\/clipboard-allow-128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "clipboardRead", "clipboardWrite", "storage" ], "background": { "persistent": false, "scripts": [ "private\/background\/clipboardService.js", "private\/background\/popupService.js" ] }, "page_action": { "default_popup": "private\/popup\/popup.html", "default_icon": { "19": "private\/popup\/icons\/clipboard-maybe-19.png", "38": "private\/popup\/icons\/clipboard-maybe-38.png" } }, "content_scripts": [ { "matches": [ "http:\/\/v2cloud.com\/*", "https:\/\/v2cloud.com\/*", "http:\/\/*.v2cloud.com\/*", "https:\/\/*.v2cloud.com\/*" ], "js": [ "private\/content\/init.js", "private\/content\/clipboardBroker.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "public\/execCommand.js" ], "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA30mr5sHK3aWSv3NMURoZpAUIVwQ9AOZMkSK\/m5gFNgHGYGfFM1bokEqhcti1YMz6rJuEjcC3lAxIQZMUpFHiXiosK5YCknsyI29xQOp\/Lg2Q4VUUcINNNZx1oMPAGrQz\/PftMq8VzP\/zQntOVxZU+vnly6BlOFbuMG9IAXH5oTCLFOUkWo8frWv4a0pHNii4llSeXPtO\/udWJYcRGjwbfijSILGgQ+kQgn9hBG\/9OGoic3Gvr\/s0mHJl+0jVdXRuKu7Dc8rkNZ\/53TyCK91DPvNV76aIqLb00OYolp0D4A7584HcUwMNX8lJw+djWH4+zRccgh95fO5oAOHQrPrYPQIDAQAB" } |