Quick Form Filler
Provides a context menu to fill forms quickly.
Vad är Quick Form Filler?
Quick Form Filler är en Chrome-tillägg utvecklad av prageethsilva, och dess huvudfunktion är "Provides a context menu to fill forms quickly.".
Ladda ner Quick Form Filler-förlängningens CRX-fil
Ladda ner Quick Form Filler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Version 1: Adds a context menu item to easy copy over the placeholder text into the input text box value.
Grundläggande Information om Tillägg
Namn | Quick Form Filler |
ID | ogofbpejbcelpjpghigpepjnghlegeka |
Officiell webbadress | https://chromewebstore.google.com/detail/quick-form-filler/ogofbpejbcelpjpghigpepjnghlegeka |
Beskrivning | Provides a context menu to fill forms quickly. |
Filstorlek | 7.82 KB |
Antal Installationer | 131 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-10-23 |
Publiceringsdatum | 2017-10-23 |
Utvecklare | prageethsilva |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |