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
}