AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
Wat is AMS Auto Fill?
AMS Auto Fill is een Chrome-extensie ontwikkeld door Fusion SD, en de belangrijkste functie is "This is an chrome Extension which helps user to auto fill a form based on json input.".
Extensie Screenshots
Download het CRX-bestand van de extensie AMS Auto Fill
Download AMS Auto Fill-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
Basisinformatie over de Extensie
| Naam | |
| ID | goleodhjeigcnckfjlfgflcpohmmkapp |
| Officiële URL | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
| Beschrijving | This is an chrome Extension which helps user to auto fill a form based on json input. |
| Bestandsgrootte | 11.62 KB |
| Aantal Installaties | 174 |
| Huidige Versie | 1.2.2 |
| Laatst Bijgewerkt | 2016-11-14 |
| Publicatiedatum | 2016-11-14 |
| Beoordeling | 4.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | Fusion SD |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "AMS Auto Fill",
"short_name": "AMS",
"description": "This is an chrome Extension which helps user to auto fill a form based on json input.",
"version": "1.2.2",
"offline_enabled": true,
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/rollsroycemotorcars.force.com\/*"
],
"js": [
"content.js"
],
"all_frames": false
}
],
"permissions": [
"tabs",
"clipboardRead",
"clipboardWrite",
"activeTab"
],
"page_action": {
"default_icon": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png"
},
"default_title": "AMS Auto Fill",
"default_popup": "popup.html"
}
} | |