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…

Notify me when I copy란 무엇입니까?

Notify me when I copy은(는) François Beaufort에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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…"입니다.

확장 프로그램 스크린샷

screenshot

Notify me when I copy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Notify me when I copy Notify me when I copy
ID edbgenmnnddaaallbinlbknacdbaoecp
공식 URL https://chromewebstore.google.com/detail/notify-me-when-i-copy/edbgenmnnddaaallbinlbknacdbaoecp
설명 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…
파일 크기 28.5 KB
설치 횟수 58
현재 버전 1
최근 업데이트 2012-12-15
출시 날짜 2012-12-15
평점 4.57/5 총 7 개의 평점
개발자 François Beaufort
결제 유형 free
확장 프로그램 웹 사이트 https://plus.google.com/100132233764003563318/posts
도움말 페이지 URL https://plus.google.com/100132233764003563318/posts/iVkn4qAm2uq
지원되는 언어 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
}