Clipboard Dispatcher
Allows execution of arbitrary actions on users computer via clipboard manipulation
Qu'est-ce que Clipboard Dispatcher ?
Clipboard Dispatcher est une extension Chrome développée par Pawel Suwala, et sa fonction principale est "Allows execution of arbitrary actions on users computer via clipboard manipulation".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Clipboard Dispatcher
Téléchargez les fichiers d'extension Clipboard Dispatcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 )
Informations de Base sur l'Extension
Nom | |
ID | ogjlnohnkafeiljmhcccjmfdngfmaoka |
URL Officiel | https://chrome.google.com/webstore/detail/clipboard-dispatcher/ogjlnohnkafeiljmhcccjmfdngfmaoka |
Description | Allows execution of arbitrary actions on users computer via clipboard manipulation |
Taille du Fichier | 40.82 KB |
Nombre d'Installations | 53 |
Version Actuelle | 0.1.6 |
Dernière Mise à Jour | 2014-12-31 |
Date de Publication | 2014-12-31 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Pawel Suwala |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sniku/clipboard_dispatcher |
Langues Prises en Charge | 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 } |