AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
Vad är AMS Auto Fill?
AMS Auto Fill är en Chrome-tillägg utvecklad av Fusion SD, och dess huvudfunktion är "This is an chrome Extension which helps user to auto fill a form based on json input.".
Tilläggsskärmbilder
Ladda ner AMS Auto Fill-förlängningens CRX-fil
Ladda ner AMS Auto Fill-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
Grundläggande Information om Tillägg
| Namn | |
| ID | goleodhjeigcnckfjlfgflcpohmmkapp |
| Officiell webbadress | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
| Beskrivning | This is an chrome Extension which helps user to auto fill a form based on json input. |
| Filstorlek | 11.62 KB |
| Antal Installationer | 174 |
| Aktuell Version | 1.2.2 |
| Senast Uppdaterad | 2016-11-14 |
| Publiceringsdatum | 2016-11-14 |
| Betyg | 4.00/5 Totalt 3 Betyg |
| Utvecklare | Fusion SD |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |