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…

Co to jest Notify me when I copy?

Notify me when I copy to rozszerzenie Chrome opracowane przez François Beaufort, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Notify me when I copy

Pobierz pliki rozszerzeń Notify me when I copy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Notify me when I copy Notify me when I copy
ID edbgenmnnddaaallbinlbknacdbaoecp
Oficjalny URL https://chromewebstore.google.com/detail/notify-me-when-i-copy/edbgenmnnddaaallbinlbknacdbaoecp
Opis 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…
Rozmiar pliku 28.5 KB
Liczba instalacji 58
Aktualna Wersja 1
Ostatnia Aktualizacja 2012-12-15
Data Publikacji 2012-12-15
Ocena 4.57/5 Łącznie 7 Oceny
Deweloper François Beaufort
Typ Płatności free
Strona Rozszerzenia https://plus.google.com/100132233764003563318/posts
Adres URL Strony Pomocy https://plus.google.com/100132233764003563318/posts/iVkn4qAm2uq
Obsługiwane Języki 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
}