Notify me when I copy

You know, sometimes, you press + c and you really really want it to be copied so you press it a second time. But you really…

¿Qué es Notify me when I copy?

Notify me when I copy es una extensión de Chrome desarrollada por François Beaufort, y su función principal es "You know, sometimes, you press + c and you really really want it to be copied so you press it a second time. But you really…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Notify me when I copy

Descarga archivos de extensión Notify me when I copy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        You know, sometimes, you press  + c and you really really want it to be copied so you press it a second time. 
But you really really want it to be copied, so you press it a third time.

With this extension, each time you copy some text in Google Chrome, you'll be notified that the copy in the clipboard has been well done.                    

Información Básica de la Extensión

Nombre Notify me when I copy Notify me when I copy
ID edbgenmnnddaaallbinlbknacdbaoecp
URL Oficial https://chromewebstore.google.com/detail/notify-me-when-i-copy/edbgenmnnddaaallbinlbknacdbaoecp
Descripción You know, sometimes, you press + c and you really really want it to be copied so you press it a second time. But you really…
Tamaño del Archivo 28.5 KB
Cantidad de Instalaciones 58
Versión Actual 1
Última Actualización 2012-12-15
Fecha de Publicación 2012-12-15
Calificación 4.57/5 Total de 7 Calificaciones
Desarrollador François Beaufort
Tipo de Pago free
Sitio Web de la Extensión https://plus.google.com/100132233764003563318/posts
URL de la Página de Ayuda https://plus.google.com/100132233764003563318/posts/iVkn4qAm2uq
Idiomas Soportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notify me when I copy",
    "version": "1",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "notifications"
    ],
    "manifest_version": 2
}