multiPaste

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

Wat is multiPaste?

multiPaste is een Chrome-extensie ontwikkeld door jrussi, en de belangrijkste functie is "Pastes content separated by tab or enter into multiple input text fields".

Download het CRX-bestand van de extensie multiPaste

Download multiPaste-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam multiPaste multiPaste
ID denelmhlogdcnnldckfohhdnhaepmpno
Officiële URL https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno
Beschrijving Pastes content separated by tab or enter into multiple input text fields
Bestandsgrootte 39.13 KB
Aantal Installaties 36
Huidige Versie 1.0
Laatst Bijgewerkt 2015-12-16
Publicatiedatum 2015-12-15
Ontwikkelaar jrussi
Betalingswijze free
Ondersteunde Talen 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
}