Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
Was ist Clipboard Dispatcher?
Clipboard Dispatcher ist eine Chrome-Erweiterung, die von Pawel Suwala entwickelt wurde, und ihr Hauptmerkmal ist "Allows execution of arbitrary actions on users computer via clipboard manipulation".
Erweiterungsscreenshots
Clipboard Dispatcher-Erweiterungs-CRX-Datei herunterladen
Laden Sie Clipboard Dispatcher-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
Adds right-click menu to images and enables you to execute arbitrary action on image URL (send via skype to friend etc).
I use it to send links to friends via skype and google-talk (saves me time to copy-paste).
It requires small daemon running on users' computer to integrate with skype and google-talk. (released o github: https://github.com/sniku/clipboard_dispatcher ) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
| Offizielle URL | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
| Beschreibung | Allows execution of arbitrary actions on users computer via clipboard manipulation |
| Dateigröße | 40.82 KB |
| Installationsanzahl | 53 |
| Aktuelle Version | 0.1.6 |
| Letztes Update | 2014-12-31 |
| Veröffentlichungsdatum | 2014-12-31 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Pawel Suwala |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/sniku/clipboard_dispatcher |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Clipboard Dispatcher",
"description": "Allows execution of arbitrary actions on users computer via clipboard manipulation",
"version": "0.1.6",
"permissions": [
"tabs",
"background",
"clipboardRead",
"clipboardWrite",
"contextMenus",
"storage"
],
"browser_action": {
"default_popup": "options.html"
},
"background": {
"scripts": [
"jquery-2.1.3.min.js",
"context.js",
"options.js"
]
},
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"options_page": "options.html",
"manifest_version": 2
} | |