Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
Co to jest Clipboard Dispatcher?
Clipboard Dispatcher to rozszerzenie Chrome opracowane przez Pawel Suwala, a jego główną funkcją jest „Allows execution of arbitrary actions on users computer via clipboard manipulation”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Clipboard Dispatcher
Pobierz pliki rozszerzeń Clipboard Dispatcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 ) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
| Oficjalny URL | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
| Opis | Allows execution of arbitrary actions on users computer via clipboard manipulation |
| Rozmiar pliku | 40.82 KB |
| Liczba instalacji | 53 |
| Aktualna Wersja | 0.1.6 |
| Ostatnia Aktualizacja | 2014-12-31 |
| Data Publikacji | 2014-12-31 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Pawel Suwala |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/sniku/clipboard_dispatcher |
| Obsługiwane Języki | 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
} | |