EZ Copy Plaintext

Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.

EZ Copy Plaintextคืออะไร?

EZ Copy Plaintext เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Josh และคุณลักษณะหลักของมันคือ "Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EZ Copy Plaintext

ดาวน์โหลดไฟล์ส่วนขยาย EZ Copy Plaintext ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Automatically removes formatting from your clipboard when you use normal copy paste [Ctrl+c].  If you need to keep the formatting, you can toggle it on and off by right clicking something you've selected/highlighted and pressing 'Get format next copy'.  On the next copy you do, it will keep the formatting. Then it will reset back to the default plaintext setting for future copying.

simple and robust.

NOTE:
The extension will not be active on tabs/windows that were already open prior to the installation.  Try refreshing the tabs or open a new one to test it out.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ EZ Copy Plaintext EZ Copy Plaintext
ID khgahhiehdlgmaoghjoegkgbfcdodnhb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ez-copy-plaintext/khgahhiehdlgmaoghjoegkgbfcdodnhb
คำอธิบาย Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.
ขนาดไฟล์ 6.47 KB
จำนวนการติดตั้ง 780
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2013-03-03
วันที่เผยแพร่ 2013-03-02
คะแนน 2.54/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา Josh
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EZ Copy Plaintext",
    "description": "Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.",
    "version": "1.1.5",
    "manifest_version": 2,
    "incognito": "split",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}