CSV form filler

Extension to form filling by uploaded csv

CSV form filler là gì?

CSV form filler là một tiện ích mở rộng Chrome được phát triển bởi csv.filler, và tính năng chính của nó là "Extension to form filling by uploaded csv".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CSV form filler

Tải xuống các tệp mở rộng CSV form filler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CSV form filler CSV form filler
ID iljfkhjbakinjcdmbipaopchpcaoeffp
URL Chính Thức https://chromewebstore.google.com/detail/csv-form-filler/iljfkhjbakinjcdmbipaopchpcaoeffp
Mô tả Extension to form filling by uploaded csv
Kích Thước Tệp 169 KB
Số Lần Cài Đặt 622
Phiên Bản Hiện Tại 1.4.2
Cập Nhật Lần Cuối 2023-08-26
Ngày Phát Hành 2023-01-16
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển csv.filler
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}