Web Developer Form Filler

This extension is used by developers to make it easy to fill forms

什么是Web Developer Form Filler?

Web Developer Form Filler是由formfiller开发的Chrome扩展程序,该扩展的主要功能是“This extension is used by developers to make it easy to fill forms”。

扩展截图

screenshot

下载Web Developer Form Filler扩展crx文件

下载Web Developer Form Filler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Еxtension allows to automatically fill forms for the purpose of testing. You can store multiple presets of values for any paga separately and trigger them using a hotkey                    

扩展基本信息

名称 Web Developer Form Filler Web Developer Form Filler
ID gbagmkohmhcjgbepncmehejaljoclpil
官方URL https://chromewebstore.google.com/detail/web-developer-form-filler/gbagmkohmhcjgbepncmehejaljoclpil
简介 This extension is used by developers to make it easy to fill forms
文件大小 109 KB
安装次数 33,293
当前版本 1.0.13.1
更新时间 2021-07-29
上架时间 2017-03-16
评分 4.30/5 共149次评分
开发者 formfiller
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "javascripts\/jquery-1.9.1.min.js",
                "javascripts\/deserialize.js",
                "javascripts\/content_script.js",
                "javascripts\/mousetrap.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "name": "Web Developer Form Filler",
    "version": "1.0.13.1",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "description": "This extension is used by developers to make it easy to fill forms",
    "browser_action": {
        "default_icon": "images\/48.png",
        "default_title": "Web Developer Form Filler",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "manifest_version": 2
}