Copy Trim

This extension remove white spaces before and after the copy

Copy Trimคืออะไร?

Copy Trim เป็นส่วนขยายของ Chrome ที่พัฒนาโดย galvish และคุณลักษณะหลักของมันคือ "This extension remove white spaces before and after the copy"

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

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

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

                                            

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

ชื่อ Copy Trim Copy Trim
ID jgmiikpncidgpcmbpafdkjkfamjnilln
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln
คำอธิบาย This extension remove white spaces before and after the copy
ขนาดไฟล์ 8.05 KB
จำนวนการติดตั้ง 128
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2017-06-26
วันที่เผยแพร่ 2017-06-26
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา galvish
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/GalVishnevsky/CopyTrim
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Trim",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "This extension remove white spaces before and after the copy",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "src\/bg\/popup.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ]
}