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…

Vad är Notify me when I copy?

Notify me when I copy är en Chrome-tillägg utvecklad av François Beaufort, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner Notify me when I copy-förlängningens CRX-fil

Ladda ner Notify me when I copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Notify me when I copy Notify me when I copy
ID edbgenmnnddaaallbinlbknacdbaoecp
Officiell webbadress https://chromewebstore.google.com/detail/notify-me-when-i-copy/edbgenmnnddaaallbinlbknacdbaoecp
Beskrivning 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…
Filstorlek 28.5 KB
Antal Installationer 58
Aktuell Version 1
Senast Uppdaterad 2012-12-15
Publiceringsdatum 2012-12-15
Betyg 4.57/5 Totalt 7 Betyg
Utvecklare François Beaufort
Betalningssätt free
Tilläggswebbplats https://plus.google.com/100132233764003563318/posts
Hjälpsida URL https://plus.google.com/100132233764003563318/posts/iVkn4qAm2uq
Stödda Språk 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
}