AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
Was ist AMS Auto Fill?
AMS Auto Fill ist eine Chrome-Erweiterung, die von Fusion SD entwickelt wurde, und ihr Hauptmerkmal ist "This is an chrome Extension which helps user to auto fill a form based on json input.".
Erweiterungsscreenshots
AMS Auto Fill-Erweiterungs-CRX-Datei herunterladen
Laden Sie AMS Auto Fill-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | goleodhjeigcnckfjlfgflcpohmmkapp |
| Offizielle URL | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
| Beschreibung | This is an chrome Extension which helps user to auto fill a form based on json input. |
| Dateigröße | 11.62 KB |
| Installationsanzahl | 174 |
| Aktuelle Version | 1.2.2 |
| Letztes Update | 2016-11-14 |
| Veröffentlichungsdatum | 2016-11-14 |
| Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Fusion SD |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |