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ファイルをダウンロード

Notify me when I copy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単に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 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
}