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
官方網址 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
}