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 } |