Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
什么是Clipboard Dispatcher?
Clipboard Dispatcher是由Pawel Suwala开发的Chrome扩展程序,该扩展的主要功能是“Allows execution of arbitrary actions on users computer via clipboard manipulation”。
扩展截图
下载Clipboard Dispatcher扩展crx文件
下载Clipboard Dispatcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 )
扩展基本信息
名称 | |
ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
官方URL | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
简介 | Allows execution of arbitrary actions on users computer via clipboard manipulation |
文件大小 | 40.82 KB |
安装次数 | 53 |
当前版本 | 0.1.6 |
更新时间 | 2014-12-31 |
上架时间 | 2014-12-31 |
评分 | 5.00/5 共1次评分 |
开发者 | Pawel Suwala |
付费类型 | free |
扩展官网 | https://github.com/sniku/clipboard_dispatcher |
支持的语言 | 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 } |