Clipboard Dispatcher

Allows execution of arbitrary actions on users computer via clipboard manipulation

Clipboard Dispatcherคืออะไร?

Clipboard Dispatcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pawel Suwala และคุณลักษณะหลักของมันคือ "Allows execution of arbitrary actions on users computer via clipboard manipulation"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clipboard Dispatcher

ดาวน์โหลดไฟล์ส่วนขยาย 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 )                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
}