multiPaste

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

什麼是multiPaste?

multiPaste是由jrussi開發的Chrome擴展程式,該擴展的主要功能是“Pastes content separated by tab or enter into multiple input text fields”。

下載multiPaste擴展crx文件

下載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
官方網址 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
}