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…

Hvad er Notify me when I copy?

Notify me when I copy er en Chrome-udvidelse udviklet af François Beaufort, og dens hovedfunktion er "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…".

Udvidelsesskærmbilleder

screenshot

Download Notify me when I copy-udvidelses-CRX-fil

Download Notify me when I copy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Notify me when I copy Notify me when I copy
ID edbgenmnnddaaallbinlbknacdbaoecp
Officiel URL https://chromewebstore.google.com/detail/notify-me-when-i-copy/edbgenmnnddaaallbinlbknacdbaoecp
Beskrivelse 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…
Filstørrelse 28.5 KB
Antal Installationer 58
Nuværende Version 1
Senest Opdateret 2012-12-15
Udgivelsesdato 2012-12-15
Bedømmelse 4.57/5 Samlet 7 Bedømmelser
Udvikler François Beaufort
Betalingsmetode free
Udvidelseswebsted https://plus.google.com/100132233764003563318/posts
Hjælpeside-URL https://plus.google.com/100132233764003563318/posts/iVkn4qAm2uq
Understøttede Sprog 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
}