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 |
官方網址 | 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 } |