Fill form get
Fill form with get parameters
什么是Fill form get?
Fill form get是由https://digitalgg.com开发的Chrome扩展程序,该扩展的主要功能是“Fill form with get parameters”。
下载Fill form get扩展crx文件
下载Fill form get扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Fill form with get parameters from url. For example: website (example.com) contains form with two fields (name, surname) and we know that input field name is "name" and "surname", so we can set get parameters to fill form. For example: if url will be example.com?name=test, the form input with name "name" will be filled with value test.
扩展基本信息
名称 | |
ID | hlpbbilciikoohloghfnlofmgekenkpl |
官方URL | https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl |
简介 | Fill form with get parameters |
文件大小 | 32.72 KB |
安装次数 | 22 |
当前版本 | 1.0 |
更新时间 | 2016-05-07 |
上架时间 | 2016-05-07 |
开发者 | https://digitalgg.com |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fill form get", "version": "1.0", "manifest_version": 2, "description": "Fill form with get parameters", "content_scripts": [ { "js": [ "jquery.min.js", "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "tabs", "http:\/\/*\/*" ] } |