Quick Form Filler

Provides a context menu to fill forms quickly.

什么是Quick Form Filler?

Quick Form Filler是由prageethsilva开发的Chrome扩展程序,该扩展的主要功能是“Provides a context menu to fill forms quickly.”。

下载Quick Form Filler扩展crx文件

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

扩展使用说明

                        Version 1: Adds a context menu item to easy copy over the placeholder text into the input text box value.                    

扩展基本信息

名称 Quick Form Filler Quick Form Filler
ID ogofbpejbcelpjpghigpepjnghlegeka
官方URL https://chromewebstore.google.com/detail/quick-form-filler/ogofbpejbcelpjpghigpepjnghlegeka
简介 Provides a context menu to fill forms quickly.
文件大小 7.82 KB
安装次数 131
当前版本 1.0
更新时间 2017-10-23
上架时间 2017-10-23
开发者 prageethsilva
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Form Filler",
    "description": "Provides a context menu to fill forms quickly.",
    "version": "1.0",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}