AMS Auto Fill
This is an chrome Extension which helps user to auto fill a form based on json input.
Co to jest AMS Auto Fill?
AMS Auto Fill to rozszerzenie Chrome opracowane przez Fusion SD, a jego główną funkcją jest „This is an chrome Extension which helps user to auto fill a form based on json input.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AMS Auto Fill
Pobierz pliki rozszerzeń AMS Auto Fill w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | goleodhjeigcnckfjlfgflcpohmmkapp |
| Oficjalny URL | https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp |
| Opis | This is an chrome Extension which helps user to auto fill a form based on json input. |
| Rozmiar pliku | 11.62 KB |
| Liczba instalacji | 174 |
| Aktualna Wersja | 1.2.2 |
| Ostatnia Aktualizacja | 2016-11-14 |
| Data Publikacji | 2016-11-14 |
| Ocena | 4.00/5 Łącznie 3 Oceny |
| Deweloper | Fusion SD |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |