Form Inspector

Inspect, modify, and test live forms with ease

Form Inspector là gì?

Form Inspector là một tiện ích mở rộng Chrome được phát triển bởi Kinman Covey, và tính năng chính của nó là "Inspect, modify, and test live forms with ease".

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

screenshot

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

Tải xuống các tệp mở rộng Form Inspector 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

                        Easily inspect, debug, and test live forms on any website.

Form inspector allows you to:

+ Modify input values (including hidden inputs)
+ Submit forms straight from the extension
+ A testing mode that automatically fills in form inputs when opening the extension
+ Custom default test values for quick testing
+ Honeypot avoidance

Test mode makes it easier than ever to perform test submissions on forms.

1. Provide default input values in the Test mode options
2. Activate Test mode by clicking the checkbox
3. Open the extension on any page to autofill forms with your default values
4. Click submit. No more repetitive typing!                    

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

Tên Form Inspector Form Inspector
ID ngbpjbijlmghjooeejfjfmgjfmlkfpbg
URL Chính Thức https://chromewebstore.google.com/detail/form-inspector/ngbpjbijlmghjooeejfjfmgjfmlkfpbg
Mô tả Inspect, modify, and test live forms with ease
Kích Thước Tệp 14.67 KB
Số Lần Cài Đặt 419
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-04-24
Ngày Phát Hành 2018-04-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Kinman Covey
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kin5/form-inspector
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Inspector",
    "version": "1.1",
    "description": "Inspect, modify, and test live forms with ease",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}