Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
Clipboard Dispatcher là gì?
Clipboard Dispatcher là một tiện ích mở rộng Chrome được phát triển bởi Pawel Suwala, và tính năng chính của nó là "Allows execution of arbitrary actions on users computer via clipboard manipulation".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Clipboard Dispatcher
Tải xuống các tệp mở rộng Clipboard Dispatcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 )
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
URL Chính Thức | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
Mô tả | Allows execution of arbitrary actions on users computer via clipboard manipulation |
Kích Thước Tệp | 40.82 KB |
Số Lần Cài Đặt | 53 |
Phiên Bản Hiện Tại | 0.1.6 |
Cập Nhật Lần Cuối | 2014-12-31 |
Ngày Phát Hành | 2014-12-31 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Pawel Suwala |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sniku/clipboard_dispatcher |
Ngôn Ngữ Được Hỗ Trợ | 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 } |