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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}