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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย François Beaufort และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notify me when I copy

ดาวน์โหลดไฟล์ส่วนขยาย 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
}