Quick Form Filler
Provides a context menu to fill forms quickly.
What is Quick Form Filler?
Quick Form Filler is a Chrome extension developed by prageethsilva, and its main feature is "Provides a context menu to fill forms quickly.".
Download Quick Form Filler Extension CRX File
Download Quick Form Filler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Version 1: Adds a context menu item to easy copy over the placeholder text into the input text box value.
Extension Basic Information
Name | Quick Form Filler |
ID | ogofbpejbcelpjpghigpepjnghlegeka |
Official URL | https://chromewebstore.google.com/detail/quick-form-filler/ogofbpejbcelpjpghigpepjnghlegeka |
Description | Provides a context menu to fill forms quickly. |
File Size | 7.82 KB |
Installation Count | 131 |
Current Version | 1.0 |
Last Updated | 2017-10-23 |
Publish Date | 2017-10-23 |
Developer | prageethsilva |
Payment Type | free |
Supported Languages | 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" ] } ] } |