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…

Was ist Notify me when I copy?

Notify me when I copy ist eine Chrome-Erweiterung, die von François Beaufort entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Erweiterungsscreenshots

screenshot

Notify me when I copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notify me when I copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Notify me when I copy Notify me when I copy
ID edbgenmnnddaaallbinlbknacdbaoecp
Offizielle URL https://chromewebstore.google.com/detail/notify-me-when-i-copy/edbgenmnnddaaallbinlbknacdbaoecp
Beschreibung 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…
Dateigröße 28.5 KB
Installationsanzahl 58
Aktuelle Version 1
Letztes Update 2012-12-15
Veröffentlichungsdatum 2012-12-15
Bewertung 4.57/5 Insgesamt 7 Bewertungen
Entwickler François Beaufort
Zahlungsart free
Erweiterungswebsite https://plus.google.com/100132233764003563318/posts
Hilfeseite URL https://plus.google.com/100132233764003563318/posts/iVkn4qAm2uq
Unterstützte Sprachen 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
}