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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Clipboard Dispatcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 )                    

확장 프로그램 기본 정보

이름 Clipboard Dispatcher 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
}