multiPaste

Pastes content separated by tab or enter into multiple input text fields

multiPasteคืออะไร?

multiPaste เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jrussi และคุณลักษณะหลักของมันคือ "Pastes content separated by tab or enter into multiple input text fields"

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

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

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

                        Pastes content separated by tab or new line into multiple input text fields.
To do that, just click the right mouse button into a text field and choose multiPaste.                    

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

ชื่อ multiPaste multiPaste
ID denelmhlogdcnnldckfohhdnhaepmpno
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno
คำอธิบาย Pastes content separated by tab or enter into multiple input text fields
ขนาดไฟล์ 39.13 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-12-16
วันที่เผยแพร่ 2015-12-15
ผู้พัฒนา jrussi
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "multiPaste",
    "version": "1.0",
    "description": "Pastes content separated by tab or enter into multiple input text fields",
    "background": {
        "matches": [
            "http:\/\/*\/*",
            "https:\/\/*\/*",
            "file:\/\/*\/*"
        ],
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "multiPaste!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "storage"
    ],
    "manifest_version": 2
}