Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
What is Clipboard Dispatcher?
Clipboard Dispatcher is a Chrome extension developed by Pawel Suwala, and its main feature is "Allows execution of arbitrary actions on users computer via clipboard manipulation".
Extension Screenshots
Download Clipboard Dispatcher Extension CRX File
Download Clipboard Dispatcher 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
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 )
Extension Basic Information
Name | |
ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
Official URL | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
Description | Allows execution of arbitrary actions on users computer via clipboard manipulation |
File Size | 40.82 KB |
Installation Count | 53 |
Current Version | 0.1.6 |
Last Updated | 2014-12-31 |
Publish Date | 2014-12-31 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Pawel Suwala |
Payment Type | free |
Extension Website | https://github.com/sniku/clipboard_dispatcher |
Supported Languages | 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 } |