multiPaste

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

Hvad er multiPaste?

multiPaste er en Chrome-udvidelse udviklet af jrussi, og dens hovedfunktion er "Pastes content separated by tab or enter into multiple input text fields".

Download multiPaste-udvidelses-CRX-fil

Download multiPaste-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn multiPaste multiPaste
ID denelmhlogdcnnldckfohhdnhaepmpno
Officiel URL https://chromewebstore.google.com/detail/multipaste/denelmhlogdcnnldckfohhdnhaepmpno
Beskrivelse Pastes content separated by tab or enter into multiple input text fields
Filstørrelse 39.13 KB
Antal Installationer 36
Nuværende Version 1.0
Senest Opdateret 2015-12-16
Udgivelsesdato 2015-12-15
Udvikler jrussi
Betalingsmetode free
Understøttede Sprog 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
}