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 |
官方網址 | 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:\/\/*\/*" ] } |