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
公式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
}