Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
Cos'è Clipboard Dispatcher?
Clipboard Dispatcher è un'estensione di Chrome sviluppata da Pawel Suwala, e la sua funzione principale è "Allows execution of arbitrary actions on users computer via clipboard manipulation".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clipboard Dispatcher
Scarica i file di estensione Clipboard Dispatcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 ) Informazioni di Base sull'Estensione
| Nome | |
| ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
| URL Ufficiale | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
| Descrizione | Allows execution of arbitrary actions on users computer via clipboard manipulation |
| Dimensione del File | 40.82 KB |
| Conteggio Installazioni | 53 |
| Versione Corrente | 0.1.6 |
| Ultimo Aggiornamento | 2014-12-31 |
| Data di Pubblicazione | 2014-12-31 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Pawel Suwala |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/sniku/clipboard_dispatcher |
| Lingue Supportate | 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
} | |