Quick Form Filler
Provides a context menu to fill forms quickly.
Wat is Quick Form Filler?
Quick Form Filler is een Chrome-extensie ontwikkeld door prageethsilva, en de belangrijkste functie is "Provides a context menu to fill forms quickly.".
Download het CRX-bestand van de extensie Quick Form Filler
Download Quick Form Filler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Version 1: Adds a context menu item to easy copy over the placeholder text into the input text box value. Basisinformatie over de Extensie
| Naam | |
| ID | ogofbpejbcelpjpghigpepjnghlegeka |
| Officiële URL | https://chromewebstore.google.com/detail/quick-form-filler/ogofbpejbcelpjpghigpepjnghlegeka |
| Beschrijving | Provides a context menu to fill forms quickly. |
| Bestandsgrootte | 7.82 KB |
| Aantal Installaties | 131 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2017-10-23 |
| Publicatiedatum | 2017-10-23 |
| Ontwikkelaar | prageethsilva |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |