V2 Cloud Clipboard
Allows users to have direct clipboard access when using V2 Cloud Web Connect
Was ist V2 Cloud Clipboard?
V2 Cloud Clipboard ist eine Chrome-Erweiterung, die von https://v2cloud.com entwickelt wurde, und ihr Hauptmerkmal ist "Allows users to have direct clipboard access when using V2 Cloud Web Connect".
V2 Cloud Clipboard-Erweiterungs-CRX-Datei herunterladen
Laden Sie V2 Cloud Clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
The extension enables bidirectional clipboard (copy/paste) in the V2 Cloud Web Connect module. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | npeefbcdhnfpefakhdpljllcbpegkopl |
| Offizielle URL | https://chromewebstore.google.com/detail/v2-cloud-clipboard/npeefbcdhnfpefakhdpljllcbpegkopl |
| Beschreibung | Allows users to have direct clipboard access when using V2 Cloud Web Connect |
| Dateigröße | 43.33 KB |
| Installationsanzahl | 269 |
| Aktuelle Version | 1.5 |
| Letztes Update | 2018-03-08 |
| Veröffentlichungsdatum | 2018-03-07 |
| Entwickler | https://v2cloud.com |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
} | |