CSV form filler

Extension to form filling by uploaded csv

什麼是CSV form filler?

CSV form filler是由csv.filler開發的Chrome擴展程式,該擴展的主要功能是“Extension to form filling by uploaded csv”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載CSV form filler擴展crx文件

下載CSV form filler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Simple form filler with text or csv files. Prepare your csv file, upload it to an extension and inputs will be filled in.

The CSV form filler extension is a tool that allows you to quickly and easily fill in input fields on websites using data stored in a CSV or TXT file. Once you have uploaded the file to the extension, then extension automatically fills in the fields with the corresponding values from the file, saving you time and effort in data entry.

For example, let's say you have a CSV file that contains data for a contact form, with columns for "Name", "Email", "Phone", and "Message". With the CSV form filler extension, you can upload file and the extension will automatically fill in the data for you. This can be a great time-saver for tasks that require a lot of data entry or form filling.


Example files to forms below
https://drive.google.com/drive/folders/1FPsTJzETpQp7sAfpaBXZmS3XS6kYgb00?usp=share_link

Example Mindop form
https://www.mindop.sk/covid/forms/edit/732881eb2dde4ecf5a98ae15c86d0b8fa387

Google form
https://accounts.google.com/signup/v2/webcreateaccount?hl=en&flowName=GlifWebSignIn&flowEntry=SignUp                    

擴展基本資訊

名稱 CSV form filler CSV form filler
ID iljfkhjbakinjcdmbipaopchpcaoeffp
官方網址 https://chromewebstore.google.com/detail/csv-form-filler/iljfkhjbakinjcdmbipaopchpcaoeffp
簡介 Extension to form filling by uploaded csv
檔案大小 169 KB
安裝次數 622
目前版本 1.4.2
更新時間 2023-08-26
上架時間 2023-01-16
評分 4.75/5 共 4 次評分
開發者 csv.filler
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSV form filler",
    "version": "1.4.2",
    "description": "Extension to form filling by uploaded csv",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/fillFormsSimple.js",
                "js\/fillMultipleForms.js",
                "js\/generateFile.js",
                "js\/fillWithGeneratedFile.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "icons": {
        "128": "assets\/images\/iconOnly.png"
    }
}